Skip to content

Commit

Permalink
version: 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 29, 2022
1 parent 52c782e commit fe09683
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/pconvert/globals.h
Expand Up @@ -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__

Expand Down
2 changes: 1 addition & 1 deletion src/python/pconvert_py/test/global.py
Expand Up @@ -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)

Expand Down

0 comments on commit fe09683

Please sign in to comment.