Skip to content

Commit 769e356

Browse files
committed
chore: prepare release 0.1.3
1 parent bf1a6e6 commit 769e356

File tree

3 files changed

+49
-6
lines changed

3 files changed

+49
-6
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.3 - 2023-08-30
9+
10+
### Added
11+
12+
- Nothing.
13+
14+
### Changed
15+
16+
- Nothing.
17+
18+
### Deprecated
19+
20+
- Nothing.
21+
22+
### Removed
23+
24+
- Nothing.
25+
26+
### Fixed
27+
28+
- [#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.
29+
- [#10](https://github.com/php-ecma-intl/ext/pull/10) allows installation of extension on PHP 8.3.
30+
- [#11](https://github.com/php-ecma-intl/ext/pull/11) fixes a build warning for switch statements with no default branch.
31+
32+
833
## 0.1.2 - 2023-08-29
934

1035
### Added

package.xml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,21 @@ Internationalization API Specification.
1313
<email>[email protected]</email>
1414
<active>yes</active>
1515
</lead>
16-
<date>2023-08-29</date>
17-
<time>14:25:28</time>
16+
<date>2023-08-30</date>
17+
<time>01:11:17</time>
1818
<version>
19-
<release>0.1.2</release>
20-
<api>0.1.2</api>
19+
<release>0.1.3</release>
20+
<api>0.1.3</api>
2121
</version>
2222
<stability>
2323
<release>alpha</release>
2424
<api>alpha</api>
2525
</stability>
2626
<license uri="https://opensource.org/license/bsd-3-clause/">BSD-3-Clause</license>
2727
<notes><![CDATA[
28-
Fix: ensure build directories are created for each source directory, fixing an issue where the extension could not be installed using pecl.
28+
Fix: reduce duplication of code (and eliminate build warnings) by splitting MINIT for each class into separate functions.
29+
Fix: allow installation of extension on PHP 8.3.
30+
Fix: fixes a build warning for switch statements with no default branch.
2931
]]></notes>
3032
<contents>
3133
<dir name="/">
@@ -223,6 +225,22 @@ Fix: ensure build directories are created for each source directory, fixing an i
223225
<providesextension>ecma_intl</providesextension>
224226
<extsrcrelease/>
225227
<changelog>
228+
<release>
229+
<date>2023-08-29</date>
230+
<time>14:25:28</time>
231+
<version>
232+
<release>0.1.2</release>
233+
<api>0.1.2</api>
234+
</version>
235+
<stability>
236+
<release>alpha</release>
237+
<api>alpha</api>
238+
</stability>
239+
<license uri="https://opensource.org/license/bsd-3-clause/">BSD-3-Clause</license>
240+
<notes><![CDATA[
241+
Fix: ensure build directories are created for each source directory, fixing an issue where the extension could not be installed using pecl.
242+
]]></notes>
243+
</release>
226244
<release>
227245
<date>2023-08-27</date>
228246
<time>23:45:00</time>

src/php/ecma_intl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
extern zend_module_entry ecma_intl_module_entry;
1919
#define phpext_ecma_intl_ptr &ecma_intl_module_entry
2020

21-
#define PHP_ECMA_INTL_VERSION "0.1.2"
21+
#define PHP_ECMA_INTL_VERSION "0.1.3"
2222

2323
#if defined(ZTS) && defined(COMPILE_DL_ECMA_INTL)
2424
ZEND_TSRMLS_CACHE_EXTERN()

0 commit comments

Comments
 (0)