diff --git a/CHANGELOG.md b/CHANGELOG.md
index baecf66..21086ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,31 @@ 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.3 - 2023-08-30
+
+### Added
+
+- Nothing.
+
+### Changed
+
+- Nothing.
+
+### Deprecated
+
+- Nothing.
+
+### Removed
+
+- Nothing.
+
+### Fixed
+
+- [#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.
+- [#10](https://github.com/php-ecma-intl/ext/pull/10) allows installation of extension on PHP 8.3.
+- [#11](https://github.com/php-ecma-intl/ext/pull/11) fixes a build warning for switch statements with no default branch.
+
+
## 0.1.2 - 2023-08-29
### Added
diff --git a/package.xml b/package.xml
index f6affaa..f40051d 100644
--- a/package.xml
+++ b/package.xml
@@ -13,11 +13,11 @@ Internationalization API Specification.
ramsey@php.net
yes
- 2023-08-29
-
+ 2023-08-30
+
- 0.1.2
- 0.1.2
+ 0.1.3
+ 0.1.3
alpha
@@ -25,7 +25,9 @@ Internationalization API Specification.
BSD-3-Clause
@@ -223,6 +225,22 @@ Fix: ensure build directories are created for each source directory, fixing an i
ecma_intl
+
+ 2023-08-29
+
+
+ 0.1.2
+ 0.1.2
+
+
+ alpha
+ alpha
+
+ BSD-3-Clause
+
+
2023-08-27
diff --git a/src/php/ecma_intl.h b/src/php/ecma_intl.h
index d834589..9293933 100644
--- a/src/php/ecma_intl.h
+++ b/src/php/ecma_intl.h
@@ -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.2"
+#define PHP_ECMA_INTL_VERSION "0.1.3"
#if defined(ZTS) && defined(COMPILE_DL_ECMA_INTL)
ZEND_TSRMLS_CACHE_EXTERN()