diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c4aecd2cf..7d16edb929 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.0.4] - 2024-05-31 + +- Fixed regression introduced by + [c18768e61fef62924f4c1fac3089ecfb83666dab](https://git.platypush.tech/platypush/platypush/commit/c18768e61fef62924f4c1fac3089ecfb83666dab). + Python seems to have introduced a breaking change from the version 3.12 - + `datetime.utcnow()` is not deprecated, but `datetime.UTC`, the suggested + alternative, isn't available on older versions of Python. Added a workaround + that makes Platypush compatible with both the implementations. + ## [1.0.3] - 2024-05-31 - [[#368](https://git.platypush.tech/platypush/platypush/issues/368)] Added diff --git a/platypush/__init__.py b/platypush/__init__.py index 874f5ce295..b07991b958 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -23,7 +23,7 @@ when = hook __author__ = 'Fabio Manganiello ' -__version__ = '1.0.3' +__version__ = '1.0.4' __all__ = [ 'Application', 'Variable', diff --git a/platypush/components.json.gz b/platypush/components.json.gz index f98a78b0db..3d9f5dd749 100644 Binary files a/platypush/components.json.gz and b/platypush/components.json.gz differ diff --git a/setup.cfg b/setup.cfg index e5cb3a406e..ac3e9b8584 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.3 +current_version = 1.0.4 commit = True tag = True diff --git a/setup.py b/setup.py index a2d0567c44..f5fe8d353b 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ backend = pkg_files('platypush/backend') setup( name="platypush", - version="1.0.3", + version="1.0.4", author="Fabio Manganiello", author_email="fabio@manganiello.tech", description="Platypush service",