From 53f93e29ada433a4ee6c537b0efccef8caa1e4f5 Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Mon, 5 Aug 2024 18:42:27 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release=20v2.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #295 --- .bumpversion.cfg | 2 +- HISTORY.rst | 2 +- LICENSE | 2 +- docs/conf.py | 2 +- src/improved_user/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 060a2aa..26e5056 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0a2 +current_version = 2.0.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)((\.(?P\d+))|((?P(a|b|rc|final))(?P\d+))) diff --git a/HISTORY.rst b/HISTORY.rst index 550c73f..340030f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,7 +7,7 @@ Next Release - Nothing Yet! -2.0.0 (Forthcoming) +2.0.0 (2024-08-05) ------------------- diff --git a/LICENSE b/LICENSE index 886d1f3..744d773 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2016-2021 Jambon Software LLC +Copyright (c) 2016-2024 Andrew Pinkham All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/conf.py b/docs/conf.py index 429bf82..ef4a0cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -174,7 +174,7 @@ def setup(app): # The short X.Y version. version = "2.0" # The full version, including alpha/beta/rc tags. -release = "2.0a2" +release = "2.0.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/improved_user/__init__.py b/src/improved_user/__init__.py index f9c42a5..b5138a4 100644 --- a/src/improved_user/__init__.py +++ b/src/improved_user/__init__.py @@ -4,7 +4,7 @@ # 2. set default app config # pylint: disable=invalid-name -__version__ = "2.0a2" +__version__ = "2.0.0" # https://docs.djangoproject.com/en/stable/ref/applications/#configuring-applications default_app_config = "improved_user.apps.ImprovedUserConfig" # pylint: enable=invalid-name