diff --git a/CHANGES b/CHANGES index acdddfba..7a0f50bc 100644 --- a/CHANGES +++ b/CHANGES @@ -9,14 +9,20 @@ To install the unreleased unihan-db version, see $ pip install --user --upgrade --pre unihan-db ``` -## unihan-db 0.8.x (unreleased) +## unihan-db 0.9.x (unreleased) - _Insert changes/features/fixes for next release here_ +## unihan-db 0.8.0 (2023-05-13) + _Maintenance only, no bug fixes or features_ +### Breaking + +- Final Python 3.7 release + ### Internal improvements - Move formatting, import sorting, and linting to [ruff]. diff --git a/README.md b/README.md index d9ce86fc..761041c4 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,10 @@ $ cd unihan-etl [Bootstrap your environment and learn more about contributing](https://cihai.git-pull.com/contributing/). We use the same conventions / tools across all cihai projects: `pytest`, `sphinx`, `flake8`, `mypy`, `black`, `isort`, `tmuxp`, and file watcher helpers (e.g. `entr(1)`). +## Python versions + +- 0.8.0: Last Python 3.7 release + ## More information [![Docs](https://github.com/cihai/unihan-db/workflows/docs/badge.svg)](https://unihan-db.git-pull.com/) diff --git a/pyproject.toml b/pyproject.toml index 6d2a6b60..b862137d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "unihan_db" -version = "0.7.2" +version = "0.8.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 786fc50e..e52cabf4 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.7.2" +__version__ = "0.8.0" __author__ = "Tony Narlock" __github__ = "https://github.com/cihai/unihan-db" __docs__ = "https://unihan-db.git-pull.com"