Skip to content

Commit 845b889

Browse files
committed
Release 2.0.1
1 parent 9a8e615 commit 845b889

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

package.xml

+19-4
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
2525
<email>kocsismate@woohoolabs.com</email>
2626
<active>yes</active>
2727
</lead>
28-
<date>2022-09-06</date>
28+
<date>2023-05-07</date>
2929
<version>
30-
<release>2.0.0</release>
30+
<release>2.0.1</release>
3131
<api>2.0.0</api>
3232
</version>
3333
<stability>
3434
<release>stable</release>
3535
<api>stable</api>
3636
</stability>
3737
<license uri="http://opensource.org/licenses/BSD-2-Clause">BSD 2-Clause</license>
38-
<notes>Increased PHP version requirement to 7.0 (#67, #69), Improved parameter reflection and validation (#63, #64),
39-
Fixed memory leak in scrypt() (#68), Fixed compilation warning (#69), Added support for sensitive parameters on PHP 8.2+ (#70)
38+
<notes>
39+
Check CPU architecture before attempting to enable SSE (#76)
4040
</notes>
4141
<contents>
4242
<dir name="/">
@@ -88,6 +88,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
8888
<configureoption default="yes" name="enable-scrypt" prompt="whether to enable scrypt support" />
8989
</extsrcrelease>
9090
<changelog>
91+
<release>
92+
<version>
93+
<release>2.0.1</release>
94+
<api>2.0.0</api>
95+
</version>
96+
<stability>
97+
<release>stable</release>
98+
<api>stable</api>
99+
</stability>
100+
<date>2023-05-07</date>
101+
<license uri="http://opensource.org/licenses/BSD-2-Clause">BSD 2-Clause</license>
102+
<notes>
103+
Check CPU architecture before attempting to enable SSE (#76)
104+
</notes>
105+
</release>
91106
<release>
92107
<version>
93108
<release>2.0.0</release>

php_scrypt.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#ifndef PHP_SCRYPT_HEADER
2828
#define PHP_SCRYPT_HEADER 1
29-
#define PHP_SCRYPT_VERSION "2.0.0"
29+
#define PHP_SCRYPT_VERSION "2.0.1"
3030
#define PHP_SCRYPT_EXTNAME "scrypt"
3131

3232
extern zend_module_entry scrypt_module_entry;

0 commit comments

Comments
 (0)