summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog10
-rw-r--r--doc/source/changelog.rst21
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 31 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 3177034..d0ab5e0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
1snuffleupagus (0.7.0) UNRELEASED; urgency=medium
2 [ jvoisin ]
3 * PHP8 support
4 * Stacktraces in dumps
5 * The `>` operator skips over functions
6 * PCRE2 is used when possible
7 * The `generate_rules.php` script is now more portable
8 * The strict mode is now disableable
9
1snuffleupagus (0.6.0) UNRELEASED; urgency=medium 10snuffleupagus (0.6.0) UNRELEASED; urgency=medium
2 11
3 [ jvoisin ] 12 [ jvoisin ]
@@ -12,7 +21,6 @@ snuffleupagus (0.6.0) UNRELEASED; urgency=medium
12 21
13 -- jvoisin <julien.voisin+snuffleupagus@dustri.org> Fri, 06 Nov 2020 17:45:00 +0200 22 -- jvoisin <julien.voisin+snuffleupagus@dustri.org> Fri, 06 Nov 2020 17:45:00 +0200
14 23
15
16snuffleupagus (0.5.1) UNRELEASED; urgency=medium 24snuffleupagus (0.5.1) UNRELEASED; urgency=medium
17 25
18 [ jvoisin ] 26 [ jvoisin ]
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index b4b87b8..307c92c 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,27 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.7.0 - `Los Elefantes <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.7.0>`__ 2021/01/02
5----------------------------------------------------------------------------------------------------------
6
7New features
8^^^^^^^^^^^^
9* PHP8 support
10* Stacktraces in dumps
11* The ``>`` operator now skips over functions
12
13Improvements
14^^^^^^^^^^^^
15* Move the CI from travis to gitlab-ci
16* Some code simplifications and constifications
17* PCRE2 is now used when possible
18* The ``generate_rules.php`` script is now more portable
19
20Bug fixes
21^^^^^^^^^
22* The strict mode is now disableable
23
24
40.6.0 - `Elephant in the room <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.6.0>`__ 2020/11/06 250.6.0 - `Elephant in the room <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.6.0>`__ 2020/11/06
5---------------------------------------------------------------------------------------------------------- 26----------------------------------------------------------------------------------------------------------
6 27
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index 02b464e..dc0a471 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.6.0" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.7.0"
5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" 5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus"
6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin" 6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin"
7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus" 7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus"