From 409ae5ad5a06142d3f9c97a0f7069c7e607a9943 Mon Sep 17 00:00:00 2001 From: collerek Date: Fri, 6 Dec 2024 19:45:55 +0900 Subject: [PATCH] bump version and release notes (#1415) --- docs/releases.md | 15 +++++++++++++++ pyproject.toml | 3 ++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index 48019107b..a125a1738 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,5 +1,20 @@ # Release notes +## 0.20.2 + +### 🐛 Fixes + +* Fix mutable default argument in translate list to dict - thanks @cadlagtrader [#1382](https://github.com/collerek/ormar/pull/1382) +* Fix fastapi docs - thanks @inktrap [#1362](https://github.com/collerek/ormar/pull/1362) +* Fix clashing many to many fields names [#1407](https://github.com/collerek/ormar/pull/1407) + +### 💬 Other +* Add official support for python 3.12 - thanks @ChristopherMacGown [#1395](https://github.com/collerek/ormar/pull/1395) +* Unpin pydantic allowing pydantic versions <2.9.0 - thanks @camillol [#1388](https://github.com/collerek/ormar/pull/1388) + + +# Release notes + ## 0.20.1 ### ✨ Breaking changes diff --git a/pyproject.toml b/pyproject.toml index 4a6adc214..d05689304 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "ormar" [tool.poetry] name = "ormar" -version = "0.20.1" +version = "0.20.2" description = "An async ORM with fastapi in mind and pydantic validation." authors = ["Radosław Drążkiewicz "] license = "MIT" @@ -36,6 +36,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", ]