diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 870cc2d12..fa72df245 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,46 @@ Changelog ========= +v1.5.15 (2024-08-12) +-------------------- + +Feat +~~~~ +- (form): Make `credits` `db.session` configurable. + + +Fix +~~~ +- (form): Add missing requirements. + + +v1.5.14 (2024-08-08) +-------------------- + +Feat +~~~~ +- (form): Update resources. + +- (form): Improve DB object readability. + +- (form): Make username registration optional. + + +Fix +~~~ +- (setup): Correct flask security requirements. + +- (form): Correct column size for stripe ids. + +- (form): Correct balance query for mysql db. + +- (form): Make all configs settable from envs. + +- (form): Correct avatar DB type. + +- (form): Correct typos. + + v1.5.13 (2024-08-09) -------------------- diff --git a/README.rst b/README.rst index cbdd81d61..defae239f 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ schedula: A smart function scheduler for dynamic flow-based programming |pypi_ver| |test_status| |cover_status| |docs_status| |downloads| |month_downloads| |github_issues| |python_ver| |proj_license| |binder| -:release: 1.5.14 -:date: 2024-08-09 00:00:00 +:release: 1.5.15 +:date: 2024-08-12 17:45:00 :repository: https://github.com/vinci1it2000/schedula :pypi-repo: https://pypi.org/project/schedula/ :docs: https://schedula.readthedocs.io/ diff --git a/schedula/_version.py b/schedula/_version.py index de35c01bd..48e983a01 100644 --- a/schedula/_version.py +++ b/schedula/_version.py @@ -9,11 +9,11 @@ '__license__', '__copyright__'] #: Authoritative project's PEP 440 version. -__version__ = version = "1.5.14" # Also update README.rst +__version__ = version = "1.5.15" # Also update README.rst # Please UPDATE TIMESTAMP WHEN BUMPING VERSIONS AND BEFORE RELEASE. #: Release date. -__updated__ = "2024-08-09 00:00:00" +__updated__ = "2024-08-12 17:45:00" __title__ = 'schedula'