diff --git a/docs/changelog/index.md b/docs/changelog/index.md index bdb76b39..5e3fc7b6 100644 --- a/docs/changelog/index.md +++ b/docs/changelog/index.md @@ -5,6 +5,13 @@ 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.14.1] - 2024-07-12 + +### Fixed + +* Fix JSON serialization error for UUID primary keys when excluded from list by [@alg](https://github.com/alg) + in [#553](https://github.com/jowilf/starlette-admin/pull/553) + ## [0.14.0] - 2024-05-28 ### Added diff --git a/docs/tutorials/basic/index.md b/docs/tutorials/basic/index.md index 62978699..e466e742 100644 --- a/docs/tutorials/basic/index.md +++ b/docs/tutorials/basic/index.md @@ -535,4 +535,4 @@ Some next tutorials to continue learning: - To be continued... -The final source code is available on GitHub at [...]() +The final source code is available [on GitHub](https://github.com/jowilf/starlette-admin/tree/main/examples/tutorials/basic) diff --git a/starlette_admin/__init__.py b/starlette_admin/__init__.py index 53656df8..9ab99fa3 100644 --- a/starlette_admin/__init__.py +++ b/starlette_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.14.0" +__version__ = "0.14.1" from ._types import ExportType as ExportType from ._types import RequestAction as RequestAction