diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a463be..c6cf515 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [4.2.0] - 2023-06-01 + +* Added: ZWG for Zimbabwe Gold + ## [4.1.0] - 2023-02-28 * Added: argument type hint for getByCode() @@ -55,7 +59,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). * Changed: removed Lithuanian currency. -[Unreleased]: https://github.com/alcohol/iso4217/compare/4.1.0...HEAD +[Unreleased]: https://github.com/alcohol/iso4217/compare/4.2.0...HEAD +[4.2.0]: https://github.com/alcohol/iso4217/compare/4.1.0...4.2.0 [4.1.0]: https://github.com/alcohol/iso4217/compare/4.0.0...4.1.0 [4.0.0]: https://github.com/alcohol/iso4217/compare/3.1.5...4.0.0 [3.1.5]: https://github.com/alcohol/iso4217/compare/3.1.4...3.1.5 diff --git a/ISO4217.php b/ISO4217.php index d430af3..3612b9c 100644 --- a/ISO4217.php +++ b/ISO4217.php @@ -1328,5 +1328,12 @@ public function getAll(): array 'exp' => 2, 'country' => 'ZM', ], + [ + 'name' => 'Zimbabwe Gold', + 'alpha3' => 'ZWG', + 'numeric' => '924', + 'exp' => 2, + 'country' => 'ZW', + ], ]; }