summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkka2018-12-21 11:59:07 +0100
committerkka2018-12-21 11:59:07 +0100
commitbdc2d866c1c55826383c0b203a0702bc58cefe76 (patch)
tree117aec37613ef0639f588302fc6ff83987e57990
parent8333a6ac80cbe72821e4f2384e7e15ffd9a975ba (diff)
bump the changelogv0.4.1
-rw-r--r--debian/changelog13
-rw-r--r--doc/source/changelog.rst22
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 36 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 20c7711..cdd493f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,18 @@
1snuffleupagus (0.4.1) UNRELEASED; urgency=medium
2
3 * Improve and clarify the documentation
4 * Add support for PHP7.3
5 * Improve the coverage, we have now reached 99% of coverage
6 * Improve the `mb_string` hooking logic
7 * The script that check uploaded file is now available in PHP
8 * Fix segfault on 32-bit for PHP7.3
9 * Fix segfault when using `sloppy_comparaison` feature with array
10
11 -- kkadosh <snuffleupagus@nbs-system.com> Fri, 21 Dec 2018 11:50:00 +0200
12
1snuffleupagus (0.4.0) UNRELEASED; urgency=medium 13snuffleupagus (0.4.0) UNRELEASED; urgency=medium
2 14
15 [ jvoisin ]
3 * Add the possibility to whitelist `stream wrappers` 16 * Add the possibility to whitelist `stream wrappers`
4 * Snuffleupagus is now using php's logging mechanisms, instead of outputting its log directly into the syslog. 17 * Snuffleupagus is now using php's logging mechanisms, instead of outputting its log directly into the syslog.
5 * PHP is now prevented from ever disabling certificate verification thanks to a few lines in our default configuration. 18 * PHP is now prevented from ever disabling certificate verification thanks to a few lines in our default configuration.
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index 534537f..cac6cec 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,28 @@
1Changelog 1Changelog
2========= 2=========
3 3
4
50.4.1 - `Loxodonta <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.4.1>`__ 2018/12/21
6--------------------------------------------------------------------------------------------------------------
7
8Improvements
9^^^^^^^^^^^^
10
11- Improve and clarify the documentation
12- Add support for PHP7.3
13- Improve the coverage, we have reached 99% of coverage
14- Improve `mb_string` hooking logic
15- The script that check uploaded file is now available in PHP
16
17
18Bug fixes
19^^^^^^^^^
20
21- Fix segfault on 32-bit for PHP7.3
22- Fix segfault when using `sloppy_comparaison` feature with array
23
24
25
40.4.0 - `Oliphant Chuckerbutty <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.4.0>`__ 2018/08/31 260.4.0 - `Oliphant Chuckerbutty <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.4.0>`__ 2018/08/31
5-------------------------------------------------------------------------------------------------------------- 27--------------------------------------------------------------------------------------------------------------
6 28
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index f5ae6ae..10e11f1 100644
--- a/src/php_snuffleupagus.h
+++ b/src/php_snuffleupagus.h
@@ -1,7 +1,7 @@
1#ifndef PHP_SNUFFLEUPAGUS_H 1#ifndef PHP_SNUFFLEUPAGUS_H
2#define PHP_SNUFFLEUPAGUS_H 2#define PHP_SNUFFLEUPAGUS_H
3 3
4#define PHP_SNUFFLEUPAGUS_VERSION "0.4.0" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.4.1"
5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" 5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus"
6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System" 6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System"
7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus" 7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus"