Skip to content

Commit 2b8dde0

Browse files
committed
chore: prepare release 0.2.0
1 parent 6a3ac21 commit 2b8dde0

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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.4 - TBA
8+
## 0.2.0 - 2023-09-02
99

1010
### Added
1111

12-
- Nothing.
12+
- Add `Locale::$currency` and `Locale\Options::$currency` properties. ECMA-402 does not define these properties; they are unique to this implementation and inspired by the properties and methods added in the [Intl Locale Info Proposal](https://tc39.es/proposal-intl-locale-info/). ([#12](https://github.com/php-ecma-intl/ext/pull/12))
1313

1414
### Changed
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p align="center">
88
<a href="https://github.com/php-ecma-intl/ext"><img src="https://img.shields.io/badge/source-pecl/ecma__intl-blue.svg?style=flat-square" alt="Source Code"></a>
9-
<a href="https://pecl.php.net/package/ecma_intl"><img src="https://img.shields.io/badge/release-v0.1.3-gold?style=flat-square" alt="Download Package"></a>
9+
<a href="https://pecl.php.net/package/ecma_intl"><img src="https://img.shields.io/badge/release-v0.2.0-gold?style=flat-square" alt="Download Package"></a>
1010
<a href="https://php.net"><img src="https://img.shields.io/badge/php-%5E8.2-8892BF?style=flat-square" alt="PHP Programming Language"></a>
1111
<a href="https://github.com/php-ecma-intl/ext/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-BSD--3--Clause-darkcyan?style=flat-square" alt="Read License"></a>
1212
<a href="https://github.com/php-ecma-intl/ext/actions/workflows/continuous-integration.yml"><img src="https://img.shields.io/github/actions/workflow/status/php-ecma-intl/ext/continuous-integration.yml?branch=main&style=flat-square&logo=github" alt="Build Status"></a>

package.xml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,19 @@ Internationalization API Specification.
1313
<email>[email protected]</email>
1414
<active>yes</active>
1515
</lead>
16-
<date>2023-08-30</date>
17-
<time>01:11:17</time>
16+
<date>2023-09-02</date>
17+
<time>19:45:00</time>
1818
<version>
19-
<release>0.1.3</release>
20-
<api>0.1.3</api>
19+
<release>0.2.0</release>
20+
<api>0.2.0</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: 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.
28+
Add Locale::$currency and Locale\Options::$currency properties. ECMA-402 does not define these properties; they are unique to this implementation and inspired by the properties and methods added in the Intl Locale Info Proposal.
3129
]]></notes>
3230
<contents>
3331
<dir name="/">
@@ -225,6 +223,24 @@ Fix: fixes a build warning for switch statements with no default branch.
225223
<providesextension>ecma_intl</providesextension>
226224
<extsrcrelease/>
227225
<changelog>
226+
<release>
227+
<date>2023-08-30</date>
228+
<time>01:11:17</time>
229+
<version>
230+
<release>0.1.3</release>
231+
<api>0.1.3</api>
232+
</version>
233+
<stability>
234+
<release>alpha</release>
235+
<api>alpha</api>
236+
</stability>
237+
<license uri="https://opensource.org/license/bsd-3-clause/">BSD-3-Clause</license>
238+
<notes><![CDATA[
239+
Fix: reduce duplication of code (and eliminate build warnings) by splitting MINIT for each class into separate functions.
240+
Fix: allow installation of extension on PHP 8.3.
241+
Fix: fixes a build warning for switch statements with no default branch.
242+
]]></notes>
243+
</release>
228244
<release>
229245
<date>2023-08-29</date>
230246
<time>14:25:28</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.4-dev"
21+
#define PHP_ECMA_INTL_VERSION "0.2.0"
2222

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

0 commit comments

Comments
 (0)