diff --git a/CHANGELOG.md b/CHANGELOG.md index 559b209..a78ddcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,13 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -* New long description support in `setup.py` -* Better size error diagnostics +* ### Fixed * +## [0.4.6] - 2022-11-29 + +### Changed + +* New long description support in `setup.py` +* Better size error diagnostics + ## [0.4.5] - 2022-11-29 ### Fixed diff --git a/setup.py b/setup.py index dbc0068..c0babf0 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name = "pconvert-python", - version = "0.4.5", + version = "0.4.6", author = "Hive Solutions Lda.", author_email = "development@hive.pt", description = "PNG Convert", diff --git a/src/pconvert/globals.h b/src/pconvert/globals.h index 1b676ec..8b78cd7 100644 --- a/src/pconvert/globals.h +++ b/src/pconvert/globals.h @@ -5,7 +5,7 @@ #define STRINGIFY(x) #x #define TOSTRING(x) STRINGIFY(x) -#define PCONVERT_VERSION "0.4.5" +#define PCONVERT_VERSION "0.4.6" #define PCONVERT_COMPILATION_DATE __DATE__ #define PCONVERT_COMPILATION_TIME __TIME__ diff --git a/src/python/pconvert_py/test/global.py b/src/python/pconvert_py/test/global.py index af230cd..2b32ce8 100644 --- a/src/python/pconvert_py/test/global.py +++ b/src/python/pconvert_py/test/global.py @@ -9,7 +9,7 @@ class GlobalTest(unittest.TestCase): def test_basic(self): self.assertEqual(type(pconvert.VERSION), str) - self.assertEqual(pconvert.VERSION, "0.4.5") + self.assertEqual(pconvert.VERSION, "0.4.6") self.assertEqual(type(pconvert.FEATURES), str)