summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--doc/source/changelog.rst9
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 17 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a3ad95c..0d73819 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
1snuffleupagus (0.9.0) UNRELEASED; urgency=low
2 [ jvoisin ]
3 * Compatibility with PHP8.2
4 * Add the ability block object unserialization globally.
5
6 -- jvoisin <julien.voisin+snuffleupagus@dustri.org> Tue, 03 Jan 2023 20:25:00 +0200
7
1snuffleupagus (0.8.3) UNRELEASED; urgency=low 8snuffleupagus (0.8.3) UNRELEASED; urgency=low
2 [ jvoisin ] 9 [ jvoisin ]
3 * Mix the stacktrace in the sha256 for the filename of .dump() 10 * Mix the stacktrace in the sha256 for the filename of .dump()
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index 472e074..aa039e4 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,15 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.9.0 - `Elephant seal <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.9.0>`__ 2023/01/03
5---------------------------------------------------------------------------------------------------
6
7New features
8^^^^^^^^^^^^
9* Compatibility with PHP8.2
10* Add the ability block object unserialization globally.
11
12
40.8.3 - `Elephant Gambit <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.8.3>`__ 2022/08/27 130.8.3 - `Elephant Gambit <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.8.3>`__ 2022/08/27
5----------------------------------------------------------------------------------------------------- 14-----------------------------------------------------------------------------------------------------
6 15
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index 2117462..7af4da2 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.8.3" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.9.0"
5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" 5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus"
6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin & SektionEins GmbH" 6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin & SektionEins GmbH"
7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus" 7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus"