diff --git a/CHANGELOG.md b/CHANGELOG.md index b71e061e..87f0b8c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.4] - 2024-10-17 16:01:24 + +### Changed + +- Changed infinite value representation from ".inf" to "Infinity" + ## [2.1.3] - 2024-10-17 10:27:41 ### Changed @@ -4636,6 +4642,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +[2.1.4]: https://github.com/PolicyEngine/policyengine-api/compare/2.1.3...2.1.4 [2.1.3]: https://github.com/PolicyEngine/policyengine-api/compare/2.1.2...2.1.3 [2.1.2]: https://github.com/PolicyEngine/policyengine-api/compare/2.1.1...2.1.2 [2.1.1]: https://github.com/PolicyEngine/policyengine-api/compare/2.1.0...2.1.1 diff --git a/changelog.yaml b/changelog.yaml index 742023cb..1a694394 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -3839,3 +3839,8 @@ changed: - Update PolicyEngine UK to 2.3.0 date: 2024-10-17 10:27:41 +- bump: patch + changes: + changed: + - Changed infinite value representation from ".inf" to "Infinity" + date: 2024-10-17 16:01:24 diff --git a/changelog_entry.yaml b/changelog_entry.yaml index d042e98b..e69de29b 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -1,4 +0,0 @@ -- bump: patch - changes: - changed: - - Changed infinite value representation from ".inf" to "Infinity" \ No newline at end of file diff --git a/policyengine_api/constants.py b/policyengine_api/constants.py index c842a721..350281a0 100644 --- a/policyengine_api/constants.py +++ b/policyengine_api/constants.py @@ -6,7 +6,7 @@ POST = "POST" UPDATE = "UPDATE" LIST = "LIST" -VERSION = "2.1.3" +VERSION = "2.1.4" COUNTRIES = ("uk", "us", "ca", "ng", "il") COUNTRY_PACKAGE_NAMES = ( "policyengine_uk",