From 6a01f163b644b9bfb8c594738e2c0e8aa9381db5 Mon Sep 17 00:00:00 2001 From: mathiasag7 <50689712+mathiasag7@users.noreply.github.com> Date: Wed, 6 Sep 2023 17:47:14 +0100 Subject: [PATCH 1/2] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d22db5..061c231 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ We follow [Semantic Versions](https://semver.org/) starting at the `0.14.0` rele ### Bug Fixes +## 1.5.0 (2023-09-06) + +### Features + +- Support for many type of primary key (UUIDField, BigAutoField, CharField) +- Support for natural key use for some models (EnumValue, EnumGroup, Attribute, Value) + ## 1.4.0 (2023-07-07) ### Features From 4be9a2413a3025957b53a47eff0adaafcd9a9222 Mon Sep 17 00:00:00 2001 From: mathiasag7 <50689712+mathiasag7@users.noreply.github.com> Date: Wed, 6 Sep 2023 17:48:19 +0100 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bb336b2..a8dafa5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,8 +15,8 @@ include = '\.pyi?$' [tool.poetry] name = "django-eav2" -description = "Entity-Attribute-Value storage for Django" -version = "1.4.0" +description = "Entity-Attribute-Value storage for Django with the possibility of changing the pk field and using natural key for serialization" +version = "1.5.0" license = "GNU Lesser General Public License (LGPL), Version 3" packages = [ { include = "eav" }