diff --git a/docs/release-notes.md b/docs/release-notes.md index 5352f22..753f8f2 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -5,6 +5,17 @@ hide: # Release Notes +## 1.4.2 + +### Changed + +- Add integration with the newly `databasez` 0.8.5+. +- Internal refactor of the registry. + +### Fixed + +- CI integration. + ## 1.4.1 ### Added diff --git a/pyproject.toml b/pyproject.toml index 8a289ca..42b6760 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,15 +116,15 @@ doc = [ ] testing = ["sqlalchemy_utils>=0.40.0"] -postgres = ["databasez[postgresql]>=0.8.2"] -mysql = ["databasez[mysql]>=0.8.2"] -sqlite = ["databasez[sqlite]>=0.8.2"] +postgres = ["databasez[postgresql]"] +mysql = ["databasez[mysql]"] +sqlite = ["databasez[sqlite]"] ptpython = ["ptpython>=3.0.23,<4.0.0"] ipython = ["ipython>=8.10.0,<9.0.0"] all = [ - "databasez[postgresql,mysql,sqlite]>=0.8.2", + "databasez[postgresql,mysql,sqlite]", "orjson>=3.8.5,<4.0.0", "ptpython>=3.0.23,<4.0.0", "ipython>=8.10.0,<9.0.0", diff --git a/saffier/__init__.py b/saffier/__init__.py index c5bf2c6..b550a89 100644 --- a/saffier/__init__.py +++ b/saffier/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.4.1" +__version__ = "1.4.2" from saffier.conf import settings from saffier.conf.global_settings import SaffierSettings