diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cab7d3ca1..83a2f38363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased] +## [1.3.3] - [`3e02304a`](https://git.platypush.tech/platypush/platypush/commit/3e02304ac203625650ab4b03f9d4146a40839f2f) [Auth]: Fixed generation of API tokens when 2FA is enabled. diff --git a/platypush/__init__.py b/platypush/__init__.py index 6ec9e9e94f..28be9437a7 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -21,7 +21,7 @@ from .utils import run # see https://git.platypush.tech/platypush/platypush/issues/399 when = hook -__version__ = '1.3.2' +__version__ = '1.3.3' __author__ = 'Fabio Manganiello ' __all__ = [ 'Application', diff --git a/pyproject.toml b/pyproject.toml index d470b4ec44..7335b1c5a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ include = [ ] [tool.bumpversion] -current_version = "1.3.2" +current_version = "1.3.3" commit = true tag = true diff --git a/version.py b/version.py index f708a9b201..7b1e312007 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "1.3.2" +__version__ = "1.3.3"