Skip to content

Commit

Permalink
Tag v0.9.0 (SQLAlchemy v2 + strict typings)
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Jun 10, 2023
1 parent d4a6068 commit 651c7c2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
26 changes: 14 additions & 12 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<!-- Maintainers, insert changes / features for the next release here -->

## 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)

Expand All @@ -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_
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <tony@git-pull.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/unihan_db/__about__.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 651c7c2

Please sign in to comment.