From 4a4b1bec6d317442c7a689ad83c3d5a5f7b90e97 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Mon, 15 Jul 2024 16:45:52 -0700 Subject: [PATCH] add Django 5.1 classifier --- django_typer/__init__.py | 2 +- doc/source/changelog.rst | 6 ++++++ pyproject.toml | 3 ++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/django_typer/__init__.py b/django_typer/__init__.py index 0917042..8a3b7f5 100644 --- a/django_typer/__init__.py +++ b/django_typer/__init__.py @@ -47,7 +47,7 @@ model_parser_completer, # noqa: F401 ) -VERSION = (2, 1, 2) +VERSION = (2, 1, 3) __title__ = "Django Typer" __version__ = ".".join(str(i) for i in VERSION) diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 54e909f..65253d9 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -2,6 +2,12 @@ Change Log ========== +v2.1.3 +====== + +* Fixed `Move from django_typer to django_typer.management broke doc reference links. `_ +* Implemented `Support Django 5.1 `_ + v2.1.2 ====== diff --git a/pyproject.toml b/pyproject.toml index f45932a..361dfd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-typer" -version = "2.1.2" +version = "2.1.3" description = "Use Typer to define the CLI for your Django management commands." authors = ["Brian Kohan "] license = "MIT" @@ -19,6 +19,7 @@ classifiers = [ "Framework :: Django :: 4.1", "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", + "Framework :: Django :: 5.1", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English",