Skip to content

Commit a0f108f

Browse files
committed
chore: prepare release 0.1.2
1 parent 3c1abed commit a0f108f

File tree

4 files changed

+46
-7
lines changed

4 files changed

+46
-7
lines changed

Diff for: CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ 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.2 - 2023-08-29
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+
- [#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`.
29+
30+
831
## 0.1.1 - 2023-08-27
932

1033
### Added

Diff for: README.md

+1-1
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.1-yellow?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.1.2-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>

Diff for: package.xml

+21-5
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ Internationalization API Specification.
1313
<email>[email protected]</email>
1414
<active>yes</active>
1515
</lead>
16-
<date>2023-08-27</date>
17-
<time>23:45:00</time>
16+
<date>2023-08-29</date>
17+
<time>14:25:28</time>
1818
<version>
19-
<release>0.1.1</release>
20-
<api>0.1.1</api>
19+
<release>0.1.2</release>
20+
<api>0.1.2</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: remove package.xml from manifest to avoid md5 checksum errors when installing via pecl.
28+
Fix: ensure build directories are created for each source directory, fixing an issue where the extension could not be installed using pecl.
2929
]]></notes>
3030
<contents>
3131
<dir name="/">
@@ -209,6 +209,22 @@ Fix: remove package.xml from manifest to avoid md5 checksum errors when installi
209209
<providesextension>ecma_intl</providesextension>
210210
<extsrcrelease/>
211211
<changelog>
212+
<release>
213+
<date>2023-08-27</date>
214+
<time>23:45:00</time>
215+
<version>
216+
<release>0.1.1</release>
217+
<api>0.1.1</api>
218+
</version>
219+
<stability>
220+
<release>alpha</release>
221+
<api>alpha</api>
222+
</stability>
223+
<license uri="https://opensource.org/license/bsd-3-clause/">BSD-3-Clause</license>
224+
<notes><![CDATA[
225+
Fix: remove package.xml from manifest to avoid md5 checksum errors when installing via pecl.
226+
]]></notes>
227+
</release>
212228
<release>
213229
<date>2023-08-27</date>
214230
<time>23:23:10</time>

Diff for: src/php/ecma_intl.h

+1-1
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.0"
21+
#define PHP_ECMA_INTL_VERSION "0.1.2"
2222

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

0 commit comments

Comments
 (0)