Skip to content

Commit

Permalink
Release 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Aug 7, 2024
1 parent 6432879 commit f1a46bf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion saffier/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.4.1"
__version__ = "1.4.2"

from saffier.conf import settings
from saffier.conf.global_settings import SaffierSettings
Expand Down

0 comments on commit f1a46bf

Please sign in to comment.