From fb4277cf70d92271c041a543edaa1b2364d66d4e Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Thu, 6 Jun 2024 10:43:50 -0700 Subject: [PATCH] bump version to 2.1.1 --- django_typer/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django_typer/__init__.py b/django_typer/__init__.py index 992dffa..0ba4a84 100644 --- a/django_typer/__init__.py +++ b/django_typer/__init__.py @@ -47,7 +47,7 @@ model_parser_completer, # noqa: F401 ) -VERSION = (2, 1, 0) +VERSION = (2, 1, 1) __title__ = "Django Typer" __version__ = ".".join(str(i) for i in VERSION) diff --git a/pyproject.toml b/pyproject.toml index 51d51d9..13137c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-typer" -version = "2.1.0" +version = "2.1.1" description = "Use Typer to define the CLI for your Django management commands." authors = ["Brian Kohan "] license = "MIT"