Skip to content

Commit faa99ee

Browse files
committed
Release Weakref 0.3.1
1 parent 9d7dd5b commit faa99ee

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

package.xml

+11-5
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,16 @@ http://pear.php.net/dtd/package-2.0.xsd">
1717
</lead>
1818
<date>2016-01-11</date>
1919
<version>
20-
<release>0.3.0</release>
21-
<api>0.3.0</api>
20+
<release>0.3.1</release>
21+
<api>0.3.1</api>
2222
</version>
2323
<stability>
2424
<release>beta</release>
2525
<api>beta</api>
2626
</stability>
2727
<license uri="http://www.php.net/license">PHP</license>
2828
<notes>
29-
- Support PHP7 (Big thanks to Julien Pauli for helping with the upgrade) (issue #19)
30-
- Add support for cloning WeakMap
31-
- Iterating WeakMap now yields objects as keys (issue #17)
29+
- Fix a bug where acquired ref would be dtored before the wref during shutdown (#69131)
3230
</notes>
3331
<contents>
3432
<dir name="/">
@@ -60,6 +58,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
6058
<providesextension>weakref</providesextension>
6159
<extsrcrelease/>
6260
<changelog>
61+
<release>
62+
<stability><release>beta</release><api>beta</api></stability>
63+
<version><release>0.3.1</release><api>0.3.1</api></version>
64+
<date>2016-01-11</date>
65+
<notes>
66+
- Fix a bug where acquired ref would be dtored before the wref during shutdown (#69131)
67+
</notes>
68+
</release>
6369
<release>
6470
<stability><release>beta</release><api>beta</api></stability>
6571
<version><release>0.3.0</release><api>0.3.0</api></version>

php_weakref.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include <php.h>
2525

26-
#define PHP_WEAKREF_VERSION "0.3.0"
26+
#define PHP_WEAKREF_VERSION "0.3.1"
2727

2828
#ifdef PHP_WIN32
2929
#define WEAKREF_API __declspec(dllexport)

0 commit comments

Comments
 (0)