diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a177070c..4c4aecd2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Changelog -## [Unreleased] +## [1.0.3] - 2024-05-31 - [[#368](https://git.platypush.tech/platypush/platypush/issues/368)] Added Ubuntu packages. +- Fixed bug that didn't get hooks to match events imported through the new + `platypush.events` symlinked module. + ## [1.0.2] - 2024-05-26 - Fixed regression introduced by the support of custom names through the diff --git a/platypush/__init__.py b/platypush/__init__.py index 494d6da80..874f5ce29 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -23,7 +23,7 @@ when = hook __author__ = 'Fabio Manganiello ' -__version__ = '1.0.2' +__version__ = '1.0.3' __all__ = [ 'Application', 'Variable', diff --git a/platypush/components.json.gz b/platypush/components.json.gz index a4fc2aca1..f98a78b0d 100644 Binary files a/platypush/components.json.gz and b/platypush/components.json.gz differ diff --git a/setup.cfg b/setup.cfg index ce46b4b30..e5cb3a406 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = True tag = True diff --git a/setup.py b/setup.py index 66abaac25..a2d0567c4 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ backend = pkg_files('platypush/backend') setup( name="platypush", - version="1.0.2", + version="1.0.3", author="Fabio Manganiello", author_email="fabio@manganiello.tech", description="Platypush service",