Skip to content

Commit

Permalink
Release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Jan 23, 2024
1 parent e040398 commit 774a2d5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ run-tests.php
dio-*.tgz

.deps
*/*.dep
Makefile
Makefile.fragments
Makefile.objects
Expand Down
22 changes: 19 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ more than adequate.
<email>[email protected]</email>
<active>no</active>
</lead>
<date>2022-01-25</date>
<date>2024-01-23</date>
<version>
<release>0.2.1</release>
<release>0.2.2</release>
<api>0.0.7</api>
</version>
<stability>
Expand All @@ -41,7 +41,7 @@ more than adequate.
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- fix windows build
- fix GH-12 Memory leak in dio_read
</notes>
<contents>
<dir name="/">
Expand All @@ -58,6 +58,7 @@ more than adequate.
<file name="dio_raw_stream_005.phpt" role="test" />
<file name="dio_raw_stream_006.phpt" role="test" />
<file name="dio_raw_stream_007.phpt" role="test" />
<file name="gh12.phpt" role="test" />
</dir> <!-- //tests -->
<file name="LICENSE" role="doc" />
<file name="config.m4" role="src" />
Expand Down Expand Up @@ -232,6 +233,21 @@ message.
- fix stream API for PHP 7.4+
</notes>
</release>
<release>
<date>2022-01-25</date>
<version>
<release>0.2.1</release>
<api>0.0.7</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- fix windows build
</notes>
</release>
</changelog>
</package>

2 changes: 1 addition & 1 deletion php5/php_dio.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
extern zend_module_entry dio_module_entry;
#define phpext_dio_ptr &dio_module_entry

#define PHP_DIO_VERSION "0.2.1"
#define PHP_DIO_VERSION "0.2.2"

/* Standard module functions. */
PHP_MINIT_FUNCTION(dio);
Expand Down
2 changes: 1 addition & 1 deletion php7/php_dio.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
extern zend_module_entry dio_module_entry;
#define phpext_dio_ptr &dio_module_entry

#define PHP_DIO_VERSION "0.2.1"
#define PHP_DIO_VERSION "0.2.2"

/* Standard module functions. */
PHP_MINIT_FUNCTION(dio);
Expand Down

0 comments on commit 774a2d5

Please sign in to comment.