diff --git a/CHANGELOG.md b/CHANGELOG.md index 39c6936..14a8d17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,3 +7,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html +## [v3.0.0](https://github.com/bswck/runtime_generics/tree/v3.0.0) (2024-02-20) + + +### Removed + +- `get_parents()` for resolving parametrized parents, `runtime_generic_proxy()` and `runtime_generic_patch()` for subclassing e.g. `typing.List` as a runtime generic. ([#1](https://github.com/bswck/runtime_generics/issues/1)) + +### Added + +- ([#2](https://github.com/bswck/runtime_generics/issues/2)) diff --git a/news/+1.removed.md b/news/+1.removed.md deleted file mode 100644 index 0d64d48..0000000 --- a/news/+1.removed.md +++ /dev/null @@ -1 +0,0 @@ -`get_parents()` for resolving parametrized parents, `runtime_generic_proxy()` and `runtime_generic_patch()` for subclassing e.g. `typing.List` as a runtime generic. \ No newline at end of file diff --git a/news/+2.added.md b/news/+2.added.md deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index 496be1c..1cdec84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [tool.poetry] name = "runtime_generics" -version = "2.0.3" +version = "3.0.0" description = "Reuse generic class type arguments at runtime." authors = ["bswck "] license = "MIT" @@ -50,6 +50,7 @@ addopts = "--doctest-modules" + [tool.poetry.group.docs] optional = true