From c34971113155756489b8a21c9637b6c1ffe682f6 Mon Sep 17 00:00:00 2001 From: Charlie Denton Date: Thu, 9 May 2024 10:34:39 +0100 Subject: [PATCH] Prepare for release of v0.1.1 --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f678000..a6d4c1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## Unreleased changes +## v0.1.1 - 2024-05-09 + - Fix some incorrect type signatures. We were mistakenly asking for `django.db.models.Model` instead of `type[django.db.models.Model]` in: - `django_integrity.constraints.foreign_key_constraint_name` diff --git a/pyproject.toml b/pyproject.toml index 974b1d7..14d8a8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ where = ["src"] [project] name = "django_integrity" -version = "0.1.0" +version = "0.1.1" license.file = "LICENSE" readme = "README.md" requires-python = ">=3.10"