From 45d81b2cd9eba886e4a6cc028cbba30fb8b4b956 Mon Sep 17 00:00:00 2001 From: collerek Date: Sun, 9 Jun 2024 18:22:06 +0200 Subject: [PATCH] add release log and bump version (#1347) --- docs/releases.md | 21 +++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index 7c44d7f26..48019107b 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,5 +1,26 @@ # Release notes +## 0.20.1 + +### ✨ Breaking changes + +* Note that this is the first non-beta release of ormar with support for Pydantic v2. Check release notes for 0.20.0 and https://collerek.github.io/ormar/0.20.0b1/migration/ + +### 🐛 Fixes + +* Fix merging same target models when using `select_related` with `prefetch_related` [#906](https://github.com/collerek/ormar/issues/906) +* Fix saving related with pk only models [#812](https://github.com/collerek/ormar/issues/812) +* Fix adding the same relation multiple times corrupting relation cache [#1335](https://github.com/collerek/ormar/issues/1335) + +### ✨ Features + +* Allow adding indexed on foreign keys by @cmflynn [#1276](https://github.com/collerek/ormar/pull/1276) + +### 💬 Other +* Some docs fixes by @Chaoyingz, thanks! + + + ## 0.20.0 ### ✨ Breaking changes diff --git a/pyproject.toml b/pyproject.toml index 2c931df45..d87438655 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "ormar" [tool.poetry] name = "ormar" -version = "0.20.0" +version = "0.20.1" description = "An async ORM with fastapi in mind and pydantic validation." authors = ["Radosław Drążkiewicz "] license = "MIT"