diff --git a/CHANGELOG.md b/CHANGELOG.md index 62550bdee2..a9a521d424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased] +## [1.3.1] - [[#344](https://git.platypush.tech/platypush/platypush/issues/344)]: removed `marshmallow_dataclass` dependency. That package isn't included in the diff --git a/platypush/__init__.py b/platypush/__init__.py index 2b6f9298d5..bf74021578 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.0' +__version__ = '1.3.1' __author__ = 'Fabio Manganiello ' __all__ = [ 'Application', diff --git a/pyproject.toml b/pyproject.toml index 16899f2402..276fcde8b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ include = [ ] [tool.bumpversion] -current_version = "1.3.0" +current_version = "1.3.1" commit = true tag = true diff --git a/version.py b/version.py index 67bc602abf..9c73af26be 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1"