Skip to content

Commit

Permalink
chore: prepare release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Aug 29, 2023
1 parent 3c1abed commit a0f108f
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 7 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ 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.2 - 2023-08-29

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- [#9](https://github.com/php-ecma-intl/ext/pull/9) ensures build directories are created for each source directory, fixing an issue ([#7](https://github.com/php-ecma-intl/ext/issues/7)) where the extension could not be installed using `pecl`.


## 0.1.1 - 2023-08-27

### Added
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.1-yellow?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.1.2-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
26 changes: 21 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ Internationalization API Specification.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2023-08-27</date>
<time>23:45:00</time>
<date>2023-08-29</date>
<time>14:25:28</time>
<version>
<release>0.1.1</release>
<api>0.1.1</api>
<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: remove package.xml from manifest to avoid md5 checksum errors when installing via pecl.
Fix: ensure build directories are created for each source directory, fixing an issue where the extension could not be installed using pecl.
]]></notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -209,6 +209,22 @@ Fix: remove package.xml from manifest to avoid md5 checksum errors when installi
<providesextension>ecma_intl</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2023-08-27</date>
<time>23:45:00</time>
<version>
<release>0.1.1</release>
<api>0.1.1</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: remove package.xml from manifest to avoid md5 checksum errors when installing via pecl.
]]></notes>
</release>
<release>
<date>2023-08-27</date>
<time>23:23:10</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.0"
#define PHP_ECMA_INTL_VERSION "0.1.2"

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

0 comments on commit a0f108f

Please sign in to comment.