From 616f3243aba1fe83aff2348f852ff7b3a17eb75e Mon Sep 17 00:00:00 2001 From: jowilf Date: Tue, 22 Nov 2022 23:03:01 +0100 Subject: [PATCH] Release 0.3.1 --- CHANGELOG.md | 8 ++++++++ docs/changelog.md | 8 ++++++++ pyproject.toml | 2 +- starlette_admin/__init__.py | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 722e4d11..67f89b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - 2022-11-22 + +--- + +### Fixed + +* Fix Regression on SQLModel backend: Duplicate instances on create & update with relationships by @jowilf in https://github.com/jowilf/starlette-admin/issues/23 + ## [0.3.0] - 2022-11-21 --- diff --git a/docs/changelog.md b/docs/changelog.md index e7eeb10a..84e5415c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - 2022-11-22 + +--- + +### Fixed + +* Fix Regression on SQLModel backend: Duplicate instances on create & update with relationships in [#23](https://github.com/jowilf/starlette-admin/issues/23) + ## [0.3.0] - 2022-11-21 diff --git a/pyproject.toml b/pyproject.toml index 30d72b77..5dc5cc29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "starlette-admin" -version = "0.3.0" +version = "0.3.1" description = "Fast, beautiful and extensible administrative interface framework for Starlette/FastApi applications" authors = ["Jocelin Hounon "] license = "MIT" diff --git a/starlette_admin/__init__.py b/starlette_admin/__init__.py index e0f2ba16..00650478 100644 --- a/starlette_admin/__init__.py +++ b/starlette_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.0" +__version__ = "0.3.1" from ._types import ExportType, RequestAction from .base import BaseAdmin