diff options
| author | jvoisin | 2021-01-02 19:22:07 +0100 |
|---|---|---|
| committer | jvoisin | 2021-01-02 19:22:07 +0100 |
| commit | 047b2d08a5d01c2c8654f16fb97bb99d0b25052b (patch) | |
| tree | 95371083cc289f93215e00fdfff018a15c5dcb5a | |
| parent | fb4e6f5fe0f1424db610b7dd563853a5d9a707ab (diff) | |
Bump the changelogv0.7.0
| -rw-r--r-- | debian/changelog | 10 | ||||
| -rw-r--r-- | doc/source/changelog.rst | 21 | ||||
| -rw-r--r-- | src/php_snuffleupagus.h | 2 |
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 @@ | |||
| 1 | snuffleupagus (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 | |||
| 1 | snuffleupagus (0.6.0) UNRELEASED; urgency=medium | 10 | snuffleupagus (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 | |||
| 16 | snuffleupagus (0.5.1) UNRELEASED; urgency=medium | 24 | snuffleupagus (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 @@ | |||
| 1 | Changelog | 1 | Changelog |
| 2 | ========= | 2 | ========= |
| 3 | 3 | ||
| 4 | 0.7.0 - `Los Elefantes <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.7.0>`__ 2021/01/02 | ||
| 5 | ---------------------------------------------------------------------------------------------------------- | ||
| 6 | |||
| 7 | New features | ||
| 8 | ^^^^^^^^^^^^ | ||
| 9 | * PHP8 support | ||
| 10 | * Stacktraces in dumps | ||
| 11 | * The ``>`` operator now skips over functions | ||
| 12 | |||
| 13 | Improvements | ||
| 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 | |||
| 20 | Bug fixes | ||
| 21 | ^^^^^^^^^ | ||
| 22 | * The strict mode is now disableable | ||
| 23 | |||
| 24 | |||
| 4 | 0.6.0 - `Elephant in the room <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.6.0>`__ 2020/11/06 | 25 | 0.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" |
