Skip to content

Commit

Permalink
chore: prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Sep 2, 2023
1 parent 6a3ac21 commit 2b8dde0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ 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.4 - TBA
## 0.2.0 - 2023-09-02

### Added

- Nothing.
- 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))

### Changed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<p align="center">
<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>
<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>
<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>
<a href="https://php.net"><img src="https://img.shields.io/badge/php-%5E8.2-8892BF?style=flat-square" alt="PHP Programming Language"></a>
<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>
<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>
Expand Down
30 changes: 23 additions & 7 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,19 @@ Internationalization API Specification.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2023-08-30</date>
<time>01:11:17</time>
<date>2023-09-02</date>
<time>19:45:00</time>
<version>
<release>0.1.3</release>
<api>0.1.3</api>
<release>0.2.0</release>
<api>0.2.0</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: 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.
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.
]]></notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -225,6 +223,24 @@ Fix: fixes a build warning for switch statements with no default branch.
<providesextension>ecma_intl</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2023-08-30</date>
<time>01:11:17</time>
<version>
<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: 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>
</release>
<release>
<date>2023-08-29</date>
<time>14:25:28</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.4-dev"
#define PHP_ECMA_INTL_VERSION "0.2.0"

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

0 comments on commit 2b8dde0

Please sign in to comment.