Skip to content

Commit

Permalink
chore: prepare release 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Aug 30, 2023
1 parent bf1a6e6 commit 769e356
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 6 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.1.3 - 2023-08-30

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- [#6](https://github.com/php-ecma-intl/ext/pull/6) reduces duplication of code (and eliminates build warnings) by splitting MINIT for each class into separate functions.
- [#10](https://github.com/php-ecma-intl/ext/pull/10) allows installation of extension on PHP 8.3.
- [#11](https://github.com/php-ecma-intl/ext/pull/11) fixes a build warning for switch statements with no default branch.


## 0.1.2 - 2023-08-29

### Added
Expand Down
28 changes: 23 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ Internationalization API Specification.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2023-08-29</date>
<time>14:25:28</time>
<date>2023-08-30</date>
<time>01:11:17</time>
<version>
<release>0.1.2</release>
<api>0.1.2</api>
<release>0.1.3</release>
<api>0.1.3</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="https://opensource.org/license/bsd-3-clause/">BSD-3-Clause</license>
<notes><![CDATA[
Fix: ensure build directories are created for each source directory, fixing an issue where the extension could not be installed using pecl.
Fix: reduce duplication of code (and eliminate build warnings) by splitting MINIT for each class into separate functions.
Fix: allow installation of extension on PHP 8.3.
Fix: fixes a build warning for switch statements with no default branch.
]]></notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -223,6 +225,22 @@ Fix: ensure build directories are created for each source directory, fixing an i
<providesextension>ecma_intl</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2023-08-29</date>
<time>14:25:28</time>
<version>
<release>0.1.2</release>
<api>0.1.2</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="https://opensource.org/license/bsd-3-clause/">BSD-3-Clause</license>
<notes><![CDATA[
Fix: ensure build directories are created for each source directory, fixing an issue where the extension could not be installed using pecl.
]]></notes>
</release>
<release>
<date>2023-08-27</date>
<time>23:45:00</time>
Expand Down
2 changes: 1 addition & 1 deletion src/php/ecma_intl.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
extern zend_module_entry ecma_intl_module_entry;
#define phpext_ecma_intl_ptr &ecma_intl_module_entry

#define PHP_ECMA_INTL_VERSION "0.1.2"
#define PHP_ECMA_INTL_VERSION "0.1.3"

#if defined(ZTS) && defined(COMPILE_DL_ECMA_INTL)
ZEND_TSRMLS_CACHE_EXTERN()
Expand Down

0 comments on commit 769e356

Please sign in to comment.