diff --git a/CHANGELOG.md b/CHANGELOG.md index e721d881..7024e415 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -* Conversion of XML to Dictionary using `xml_to_dict()` -* Conversion of Dictionary to XML using `dict_to_xml()` +* ### Changed @@ -20,6 +19,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * +## [1.4.3] - 2022-12-30 + +### Added + +* Conversion of XML to Dictionary using `xml_to_dict()` +* Conversion of Dictionary to XML using `dict_to_xml()` + ## [1.4.2] - 2022-12-21 ### Changed diff --git a/setup.py b/setup.py index 956ec96b..e20ce7e8 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setuptools.setup( name = "colony", - version = "1.4.2", + version = "1.4.3", author = "Hive Solutions Lda.", author_email = "development@hive.pt", description = "Colony Framework", diff --git a/src/colony/base/system.py b/src/colony/base/system.py index 574a9a16..b3687318 100644 --- a/src/colony/base/system.py +++ b/src/colony/base/system.py @@ -22,7 +22,7 @@ __author__ = "João Magalhães " """ The author(s) of the module """ -__version__ = "1.4.2" +__version__ = "1.4.3" """ The version of the module """ __revision__ = "$LastChangedRevision$" diff --git a/src/colony/res/colony.json b/src/colony/res/colony.json index 38d70c0a..f1897446 100644 --- a/src/colony/res/colony.json +++ b/src/colony/res/colony.json @@ -1,6 +1,6 @@ { "name": "colony", - "version": "1.4.2", + "version": "1.4.3", "release": "100", "build": "final" } diff --git a/src/colony/res/colony.log.json b/src/colony/res/colony.log.json index 608dc54b..24830c73 100644 --- a/src/colony/res/colony.log.json +++ b/src/colony/res/colony.log.json @@ -1,4 +1,5 @@ { + "1.4.3": ["XML utility functions added"], "1.4.2": ["Vastly improved scheduling solution"], "1.4.1": ["Fixed issue related to race condition in scheduling"], "1.4.0": ["Major release with verify() and exceptions support"],