diff --git a/CHANGES b/CHANGES index df482934..cdb9abad 100644 --- a/CHANGES +++ b/CHANGES @@ -9,22 +9,13 @@ To install the unreleased unihan-db version, see $ pip install --user --upgrade --pre unihan-db ``` -## unihan-db 0.9.x (unreleased) +## unihan-db 0.10.x (unreleased) -## Development +## unihan-db 0.9.0 (2023-06-10) -- **Improved typings** - - Move to strict mypy typings (#311) - - This will make future refactoring simplifications easier and maintain code - quality in the long term, in addition to more intelligent completions. - - [`mypy --strict`]: https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-strict - -### Breaking +### Breaking changes - SQLAlchemy: Upgraded to v2 (#311) @@ -46,6 +37,17 @@ $ pip install --user --upgrade --pre unihan-db `typing.TypedDict` and `typing.Protocol` out of the box without needing `typing_extensions`. +### Development + +- **Improved typings** + + Move to strict mypy typings (#311) + + This will make future refactoring simplifications easier and maintain code + quality in the long term, in addition to more intelligent completions. + + [`mypy --strict`]: https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-strict + ## unihan-db 0.8.0 (2023-05-13) _Maintenance only, no bug fixes or features_ diff --git a/README.md b/README.md index 761041c4..27d78ce9 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,9 @@ $ cd unihan-etl ## Python versions -- 0.8.0: Last Python 3.7 release +- 0.8.0: + - Last Python 3.7 release + - Last SQLAlchemy 1.3 release ## More information diff --git a/pyproject.toml b/pyproject.toml index 88da3cae..29e08709 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "unihan_db" -version = "0.8.0" +version = "0.9.0" description = "SQLAlchemy models for UNIHAN CJK database" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/unihan_db/__about__.py b/src/unihan_db/__about__.py index e52cabf4..e16b431a 100644 --- a/src/unihan_db/__about__.py +++ b/src/unihan_db/__about__.py @@ -1,7 +1,7 @@ __title__ = "unihan-db" __package_name__ = "unihan_db" __description__ = "SQLAlchemy models for UNIHAN CJK database" -__version__ = "0.8.0" +__version__ = "0.9.0" __author__ = "Tony Narlock" __github__ = "https://github.com/cihai/unihan-db" __docs__ = "https://unihan-db.git-pull.com"