Skip to content

Commit

Permalink
Release 1.0.4 with package support for PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Dec 2, 2020
1 parent 78a1909 commit fa8ea63
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
22 changes: 5 additions & 17 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<email>leigh@php.net</email>
<active>yes</active>
</lead>
<date>2019-09-17</date>
<date>2020-12-02</date>
<version>
<release>1.0.3</release>
<release>1.0.4</release>
<api>1.0.0</api>
</version>
<stability>
Expand All @@ -35,7 +35,7 @@
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Addressed Windows build issues
- Make release to advertise PHP 8 support, which it already had.
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -64,13 +64,7 @@
<file role="test" name="mcrypt_create_iv.phpt"/>
<file role="test" name="mcrypt_decrypt_3des_cbc.phpt"/>
<file role="test" name="mcrypt_decrypt_3des_ecb.phpt"/>
<file role="test" name="mcrypt_decrypt_error.phpt"/>
<file role="test" name="mcrypt_decrypt.phpt"/>
<file role="test" name="mcrypt_decrypt_variation1.phpt"/>
<file role="test" name="mcrypt_decrypt_variation2.phpt"/>
<file role="test" name="mcrypt_decrypt_variation3.phpt"/>
<file role="test" name="mcrypt_decrypt_variation4.phpt"/>
<file role="test" name="mcrypt_decrypt_variation5.phpt"/>
<file role="test" name="mcrypt_ecb_3des_decrypt.phpt"/>
<file role="test" name="mcrypt_ecb_3des_encrypt.phpt"/>
<file role="test" name="mcrypt_ecb.phpt"/>
Expand All @@ -85,12 +79,6 @@
<file role="test" name="mcrypt_enc_is_block_mode.phpt"/>
<file role="test" name="mcrypt_encrypt_3des_cbc.phpt"/>
<file role="test" name="mcrypt_encrypt_3des_ecb.phpt"/>
<file role="test" name="mcrypt_encrypt_error.phpt"/>
<file role="test" name="mcrypt_encrypt_variation1.phpt"/>
<file role="test" name="mcrypt_encrypt_variation2.phpt"/>
<file role="test" name="mcrypt_encrypt_variation3.phpt"/>
<file role="test" name="mcrypt_encrypt_variation4.phpt"/>
<file role="test" name="mcrypt_encrypt_variation5.phpt"/>
<file role="test" name="mcrypt_enc_self_test.phpt"/>
<file role="test" name="mcrypt_filters.phpt"/>
<file role="test" name="mcrypt_get_block_size.phpt"/>
Expand Down Expand Up @@ -118,8 +106,8 @@
<required>
<php>
<min>7.2.0</min>
<max>8.0.0</max>
<exclude>8.0.0</exclude>
<max>8.1.0</max>
<exclude>8.1.0</exclude>
</php>
<pearinstaller>
<min>1.4.0</min>
Expand Down
2 changes: 1 addition & 1 deletion php_mcrypt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
extern zend_module_entry mcrypt_module_entry;
#define mcrypt_module_ptr &mcrypt_module_entry

#define PHP_MCRYPT_VERSION "1.0.3"
#define PHP_MCRYPT_VERSION "1.0.4"

/* Functions for both old and new API */
PHP_FUNCTION(mcrypt_ecb);
Expand Down

1 comment on commit fa8ea63

@glensc
Copy link

@glensc glensc commented on fa8ea63 Mar 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git tags not pushed for 1.0.3 nor 1.0.4 versions

Please sign in to comment.