summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-02-07 11:05:38 +0100
committerjvoisin2018-02-07 11:05:38 +0100
commita9ee27231e057e3b30a424d7dec8f92ac8beac11 (patch)
tree34cb226872851f1d874b18bf8b9c3d493e5aa63d
parent86e82aaa0cef705be3657d201ac7bccc0fafeb28 (diff)
Bump the changelogv0.2.1
-rw-r--r--debian/changelog10
-rw-r--r--doc/source/changelog.rst17
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 28 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index fc07a71..ba90eda 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
1snuffleupagus (0.2.1) UNRELEASED; urgency=medium
2 * The testsuite can now be successfully run as root
3 * Fix a double execution when snuffleupagus is used with some other extensions
4 * Fix an execution-context related crash
5 * Support PCRE2, since it's required for PHP7.3
6 * Improve a bit the portability of the code
7 * Minor code simplification
8
9 -- jvoisin <snuffleupagus@nbs-system.com> Tue, 07 Feb 2018 11:00:00 +0200
10
1snuffleupagus (0.2.0) UNRELEASED; urgency=medium 11snuffleupagus (0.2.0) UNRELEASED; urgency=medium
2 12
3 * Glob support in `sp.configuration_file` 13 * Glob support in `sp.configuration_file`
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index 5efb4cc..8e476b1 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,23 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.2.1 - `Elephant Point <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.2.1>`__ 2018/02/07
5-------------------------------------------------------------------------------------------------------
6
7Bug fixes
8^^^^^^^^^
9
10- The testsuite can now be successfully run as root
11- Fix a double execution when snuffleupagus is used with some other extensions
12- Fix an execution-context related crash
13
14Improvements
15^^^^^^^^^^^^
16
17- Support PCRE2, since it's `required for PHP7.3 <https://wiki.php.net/rfc/pcre2-migration>`__
18- Improve a bit the portability of the code
19- Minor code simplification
20
40.2.0 - `Elephant Rally <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.2.0>`__ - 2018/01/18 210.2.0 - `Elephant Rally <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.2.0>`__ - 2018/01/18
5--------------------------------------------------------------------------------------------------------- 22---------------------------------------------------------------------------------------------------------
6 23
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index 52bcc93..27830e4 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.2.1-dev" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.2.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"