diff --git a/debian/changelog b/debian/changelog index 31770347..d0ab5e07 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +snuffleupagus (0.7.0) UNRELEASED; urgency=medium + [ jvoisin ] + * PHP8 support + * Stacktraces in dumps + * The `>` operator skips over functions + * PCRE2 is used when possible + * The `generate_rules.php` script is now more portable + * The strict mode is now disableable + snuffleupagus (0.6.0) UNRELEASED; urgency=medium [ jvoisin ] @@ -12,7 +21,6 @@ snuffleupagus (0.6.0) UNRELEASED; urgency=medium -- jvoisin Fri, 06 Nov 2020 17:45:00 +0200 - snuffleupagus (0.5.1) UNRELEASED; urgency=medium [ jvoisin ] diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index b4b87b84..307c92c4 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1,6 +1,27 @@ Changelog ========= +0.7.0 - `Los Elefantes `__ 2021/01/02 +---------------------------------------------------------------------------------------------------------- + +New features +^^^^^^^^^^^^ +* PHP8 support +* Stacktraces in dumps +* The ``>`` operator now skips over functions + +Improvements +^^^^^^^^^^^^ +* Move the CI from travis to gitlab-ci +* Some code simplifications and constifications +* PCRE2 is now used when possible +* The ``generate_rules.php`` script is now more portable + +Bug fixes +^^^^^^^^^ +* The strict mode is now disableable + + 0.6.0 - `Elephant in the room `__ 2020/11/06 ---------------------------------------------------------------------------------------------------------- diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index 02b464e1..dc0a4715 100644 --- a/src/php_snuffleupagus.h +++ b/src/php_snuffleupagus.h @@ -1,7 +1,7 @@ #ifndef PHP_SNUFFLEUPAGUS_H #define PHP_SNUFFLEUPAGUS_H -#define PHP_SNUFFLEUPAGUS_VERSION "0.6.0" +#define PHP_SNUFFLEUPAGUS_VERSION "0.7.0" #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin" #define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus"