Skip to content

Commit 3c4d671

Browse files
committed
Release 0.3.1
1 parent 8ffbd15 commit 3c4d671

File tree

4 files changed

+28
-14
lines changed

4 files changed

+28
-14
lines changed

HISTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release history
22

3+
## 0.3.1 (devel)
4+
- Fixed segfault on PHP 5 in setting KDF key length and PBKDF2 iterations
5+
36
## 0.3.0 (devel)
47
- Fixed compilation with OpenSSL 1.1 and PHP 7.1
58
- Added KDF abstract class to be a parent for all key derivation function classes

NEWS.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,5 @@
22

33
List of all features for the release
44

5-
## 0.3.0
6-
- Fixed compilation with OpenSSL 1.1 and PHP 7.1
7-
- Added KDF abstract class to be a parent for all key derivation function classes
8-
- Added PBKDF2 class extending KDF class and implementing PBKDF2
9-
- Renamed HashException code ALGORITHM_NOT_FOUND to HASH_ALGORITHM_NOT_FOUND
10-
- Renamed MACException code ALGORITHM_NOT_FOUND to MAC_ALGORITHM_NOT_FOUND
5+
## 0.3.1
6+
- Fixed segfault on PHP 5 in setting KDF key length and PBKDF2 iterations

package.xml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<email>bukka@php.net</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2016-12-14</date>
19+
<date>2016-12-15</date>
2020
<version>
21-
<release>0.3.0</release>
21+
<release>0.3.1</release>
2222
<api>0.3.0</api>
2323
</version>
2424
<stability>
@@ -27,11 +27,7 @@
2727
</stability>
2828
<license uri="http://www.php.net/license">PHP 3.01</license>
2929
<notes><![CDATA[
30-
* Fixed compilation with OpenSSL 1.1 and PHP 7.1
31-
* Added KDF abstract class to be a parent for all key derivation function classes
32-
* Added PBKDF2 class extending KDF class and implementing PBKDF2
33-
* Renamed HashException code ALGORITHM_NOT_FOUND to HASH_ALGORITHM_NOT_FOUND
34-
* Renamed MACException code ALGORITHM_NOT_FOUND to MAC_ALGORITHM_NOT_FOUND
30+
* Fixed segfault on PHP 5 in setting KDF key length and PBKDF2 iterations
3531
]]></notes>
3632
<contents>
3733
<dir name="/">
@@ -193,6 +189,25 @@
193189
<providesextension>crypto</providesextension>
194190
<extsrcrelease/>
195191
<changelog>
192+
<release>
193+
<date>2016-12-14</date>
194+
<version>
195+
<release>0.3.0</release>
196+
<api>0.3.0</api>
197+
</version>
198+
<stability>
199+
<release>devel</release>
200+
<api>devel</api>
201+
</stability>
202+
<license uri="http://www.php.net/license">PHP 3.01</license>
203+
<notes><![CDATA[
204+
* Fixed compilation with OpenSSL 1.1 and PHP 7.1
205+
* Added KDF abstract class to be a parent for all key derivation function classes
206+
* Added PBKDF2 class extending KDF class and implementing PBKDF2
207+
* Renamed HashException code ALGORITHM_NOT_FOUND to HASH_ALGORITHM_NOT_FOUND
208+
* Renamed MACException code ALGORITHM_NOT_FOUND to MAC_ALGORITHM_NOT_FOUND
209+
]]></notes>
210+
</release>
196211
<release>
197212
<date>2015-11-25</date>
198213
<version>

php_crypto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ extern zend_module_entry crypto_module_entry;
4848
#include "phpc/phpc.h"
4949

5050
/* Crypto version */
51-
#define PHP_CRYPTO_VERSION "0.3.0"
51+
#define PHP_CRYPTO_VERSION "0.3.1"
5252

5353

5454
/* NAMESPACE */

0 commit comments

Comments
 (0)