Skip to content
This repository was archived by the owner on Jul 7, 2018. It is now read-only.

Commit 571db0d

Browse files
committed
Prepare 0.5.0 release
1 parent 856d82b commit 571db0d

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

package.xml

+13-14
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,27 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2017-07-22</date>
20-
<time>11:38:26</time>
19+
<date>2017-08-27</date>
20+
<time>14:08:56</time>
2121
<version>
22-
<release>0.4.4</release>
23-
<api>0.4.4</api>
22+
<release>0.5.0</release>
23+
<api>0.5.0</api>
2424
</version>
2525
<stability>
2626
<release>stable</release>
2727
<api>stable</api>
2828
</stability>
2929
<license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
3030
<notes>
31-
This release improves PHP 7.2 compatibility support
31+
This release fix bugs, drop unused feature and soon to be EOL PHP 7.0 (see http://php.net/supported-versions.php for details).
3232

3333
Changelist:
34-
- Restore original referent obj handler when it is no longer tracked
34+
- Drop PHP &lt; 7.1 support (BC-breaking);
35+
- Remove array notifier in a favor of callback (BC-breaking);
36+
- Remove references comparison (BC-breaking);
37+
- Fix bug when object handle reused but previous state was not clean;
38+
- Fix wrong behavior when reference get deleted during notifier call;
39+
- Fix memleaks;
3540
</notes>
3641
<contents>
3742
<dir name="/">
@@ -54,7 +59,6 @@
5459
<file name="tests/002-WeakReference-clone.phpt" role="test" />
5560
<file name="tests/002-WeakReference-clone_extended.phpt" role="test" />
5661
<file name="tests/002-WeakReference-closure.phpt" role="test" />
57-
<file name="tests/002-WeakReference-compare.phpt" role="test" />
5862
<file name="tests/002-WeakReference-die_in_dtor.phpt" role="test" />
5963
<file name="tests/002-WeakReference-dump_extended.phpt" role="test" />
6064
<file name="tests/002-WeakReference-exception-before-and-from-notifier.phpt" role="test" />
@@ -69,20 +73,19 @@
6973
<file name="tests/002-WeakReference-multiple_with_notify_and_orig_dtor.phpt" role="test" />
7074
<file name="tests/002-WeakReference-notified.phpt" role="test" />
7175
<file name="tests/002-WeakReference-notifier.phpt" role="test" />
72-
<file name="tests/002-WeakReference-notifier_array.phpt" role="test" />
73-
<file name="tests/002-WeakReference-notifier_array_clone.phpt" role="test" />
74-
<file name="tests/002-WeakReference-notifier_array_reliability.phpt" role="test" />
7576
<file name="tests/002-WeakReference-notifier_callable_array.phpt" role="test" />
7677
<file name="tests/002-WeakReference-notifier_callable_string.phpt" role="test" />
7778
<file name="tests/002-WeakReference-notifier_change.phpt" role="test" />
7879
<file name="tests/002-WeakReference-notifier_clone_change.phpt" role="test" />
7980
<file name="tests/002-WeakReference-notifier_invalid_callback.phpt" role="test" />
8081
<file name="tests/002-WeakReference-notifier_not_called_after_wr_dies_first.phpt" role="test" />
82+
<file name="tests/002-WeakReference-object-handle-reuse.phpt" role="test" />
8183
<file name="tests/002-WeakReference-orig_dtor_and_notifier_when_wr_dies_first.phpt" role="test" />
8284
<file name="tests/002-WeakReference-orig_dtor_and_notify.phpt" role="test" />
8385
<file name="tests/002-WeakReference-orig_dtor_called.phpt" role="test" />
8486
<file name="tests/002-WeakReference-orig_dtor_called_after_wr_dies_first.phpt" role="test" />
8587
<file name="tests/002-WeakReference-orig_dtor_called_once.phpt" role="test" />
88+
<file name="tests/002-WeakReference-reference-deleted-during-notifier.phpt" role="test" />
8689
<file name="tests/002-WeakReference-serialize_extended_not_allowed.phpt" role="test" />
8790
<file name="tests/002-WeakReference-serialize_not_allowed.phpt" role="test" />
8891
<file name="tests/002-WeakReference-spl_hash_consistent.phpt" role="test" />
@@ -93,7 +96,6 @@
9396
<file name="tests/003-functions-weakrefcounted_after_all_refs_died.phpt" role="test" />
9497
<file name="tests/003-functions.phpt" role="test" />
9598
<file name="tests/004-SofReference-basic.phpt" role="test" />
96-
<file name="tests/004-SofrReference-compare.phpt" role="test" />
9799
<file name="tests/004-SoftReference-clone.phpt" role="test" />
98100
<file name="tests/004-SoftReference-clone_extended.phpt" role="test" />
99101
<file name="tests/004-SoftReference-closure.phpt" role="test" />
@@ -117,9 +119,6 @@
117119
<file name="tests/004-SoftReference-notified_prevent_destoying_with_weak.phpt" role="test" />
118120
<file name="tests/004-SoftReference-notified_with_weak.phpt" role="test" />
119121
<file name="tests/004-SoftReference-notifier.phpt" role="test" />
120-
<file name="tests/004-SoftReference-notifier_array.phpt" role="test" />
121-
<file name="tests/004-SoftReference-notifier_array_clone.phpt" role="test" />
122-
<file name="tests/004-SoftReference-notifier_array_reliability.phpt" role="test" />
123122
<file name="tests/004-SoftReference-notifier_callable_array.phpt" role="test" />
124123
<file name="tests/004-SoftReference-notifier_callable_string.phpt" role="test" />
125124
<file name="tests/004-SoftReference-notifier_change.phpt" role="test" />

php_ref.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extern zend_module_entry php_ref_module_entry;
2323
#endif
2424

2525
#ifndef PHP_REF_REVISION
26-
#define PHP_REF_REVISION "dev"
26+
#define PHP_REF_REVISION "release"
2727
#endif
2828

2929
#if PHP_VERSION_ID < 70100

0 commit comments

Comments
 (0)