From e5a2ef2cc54c0d8364f9b2193aa8dff534d940bd Mon Sep 17 00:00:00 2001 From: Leonardo Cavallucci Date: Thu, 10 Aug 2023 08:51:07 +0200 Subject: [PATCH] Release 2.3.0 --- .bumpversion.cfg | 6 +++--- HISTORY.rst | 11 +++++++++++ changes/127.bugfix | 1 - changes/152.bugfix | 1 - changes/155.bugfix | 1 - meta/__init__.py | 2 +- 6 files changed, 15 insertions(+), 7 deletions(-) delete mode 100644 changes/127.bugfix delete mode 100644 changes/152.bugfix delete mode 100644 changes/155.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bb63563..55954b4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] -current_version = 2.2.0 +current_version = 2.3.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) -serialize = +serialize = {major}.{minor}.{patch}.{release}{relver} {major}.{minor}.{patch} commit = True @@ -12,7 +12,7 @@ message = Release {new_version} [bumpversion:part:release] optional_value = gamma -values = +values = dev a b diff --git a/HISTORY.rst b/HISTORY.rst index da1c447..9a7c833 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,17 @@ History .. towncrier release notes start +2.3.0 (2023-08-10) +================== + +Bugfixes +-------- + +- Fix schemaorg_description not being in Meta class (#127) +- Fix schema.org protocol to be https (#152) +- Fix request set order in Meta.__init__ (#155) + + 2.2.0 (2023-04-18) ================== diff --git a/changes/127.bugfix b/changes/127.bugfix deleted file mode 100644 index 35ff24c..0000000 --- a/changes/127.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix schemaorg_description not being in Meta class diff --git a/changes/152.bugfix b/changes/152.bugfix deleted file mode 100644 index 70730e1..0000000 --- a/changes/152.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix schema.org protocol to be https diff --git a/changes/155.bugfix b/changes/155.bugfix deleted file mode 100644 index 1f10bae..0000000 --- a/changes/155.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix request set order in Meta.__init__ diff --git a/meta/__init__.py b/meta/__init__.py index 8a124bf..55e4709 100644 --- a/meta/__init__.py +++ b/meta/__init__.py @@ -1 +1 @@ -__version__ = "2.2.0" +__version__ = "2.3.0"