Skip to content

Commit 21121e6

Browse files
committed
Release 0.2.2
1 parent 2336985 commit 21121e6

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
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.2.2 (devel)
4+
- Fixed missing CCM cipher algorithms with OpenSSL 1.0.1
5+
36
## 0.2.1 (devel)
47
- Fixed C89 compatibility issue in Base64
58

package.xml

Lines changed: 20 additions & 5 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>2015-11-15</date>
19+
<date>2015-11-25</date>
2020
<version>
21-
<release>0.2.1</release>
21+
<release>0.2.2</release>
2222
<api>0.2.0</api>
2323
</version>
2424
<stability>
@@ -27,7 +27,7 @@
2727
</stability>
2828
<license uri="http://www.php.net/license">PHP 3.01</license>
2929
<notes><![CDATA[
30-
* Fixed C89 compatibility issue in Base64
30+
* Fixed missing CCM cipher algorithms with OpenSSL 1.0.1
3131
]]></notes>
3232
<contents>
3333
<dir name="/">
@@ -103,8 +103,8 @@
103103
<file role="test" name="Cipher_encryptUpdate_basic.phpt"/>
104104
<file role="test" name="Cipher_encrypt_basic.phpt"/>
105105
<file role="test" name="Cipher_getAlgorithmName_basic.phpt"/>
106-
<file role="test" name="Cipher_getAlgorithms_basic.phpt"/>
107-
<file role="test" name="Cipher_getAlgorithms_ccm.phpt"/>
106+
<file role="test" name="Cipher_getAlgorithms_all_basic.phpt"/>
107+
<file role="test" name="Cipher_getAlgorithms_ccm_basic.phpt"/>
108108
<file role="test" name="Cipher_getBlockSize_basic.phpt"/>
109109
<file role="test" name="Cipher_getIVLength_basic.phpt"/>
110110
<file role="test" name="Cipher_getKeyLength_basic.phpt"/>
@@ -172,6 +172,21 @@
172172
<providesextension>crypto</providesextension>
173173
<extsrcrelease/>
174174
<changelog>
175+
<release>
176+
<date>2015-11-15</date>
177+
<version>
178+
<release>0.2.1</release>
179+
<api>0.2.0</api>
180+
</version>
181+
<stability>
182+
<release>devel</release>
183+
<api>devel</api>
184+
</stability>
185+
<license uri="http://www.php.net/license">PHP 3.01</license>
186+
<notes><![CDATA[
187+
* Fixed C89 compatibility issue in Base64
188+
]]></notes>
189+
</release>
175190
<release>
176191
<date>2015-11-15</date>
177192
<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.2.1"
51+
#define PHP_CRYPTO_VERSION "0.2.2"
5252

5353

5454
/* NAMESPACE */

0 commit comments

Comments
 (0)