Merge branch 'master' into 384/assistant-openai

This commit is contained in:
Fabio Manganiello 2024-05-31 21:07:06 +02:00
commit 709b90fa4b
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774
5 changed files with 12 additions and 3 deletions

View file

@ -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

View file

@ -23,7 +23,7 @@ when = hook
__author__ = 'Fabio Manganiello <fabio@manganiello.tech>'
__version__ = '1.0.3'
__version__ = '1.0.4'
__all__ = [
'Application',
'Variable',

Binary file not shown.

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.3
current_version = 1.0.4
commit = True
tag = True

View file

@ -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",