From c61a61b72e532adb8956ed02b85e554b3a10bd5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Tue, 12 Mar 2024 17:52:11 +0100 Subject: [PATCH] Release 2.3.0 --- CHANGES.rst | 15 +++++++++++++++ README.rst | 6 +++--- newsfragments/1291.misc.rst | 1 - newsfragments/1314.misc.rst | 1 - newsfragments/1315.feature.rst | 1 - pyproject.toml | 6 +++--- pytest_dynamodb/__init__.py | 2 +- 7 files changed, 22 insertions(+), 10 deletions(-) delete mode 100644 newsfragments/1291.misc.rst delete mode 100644 newsfragments/1314.misc.rst delete mode 100644 newsfragments/1315.feature.rst diff --git a/CHANGES.rst b/CHANGES.rst index 47d4372a..8c777685 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,21 @@ CHANGELOG .. towncrier release notes start +2.3.0 (2024-03-12) +================== + +Features +-------- + +- Add Support for Python 3.12 (`#1315 `_) + + +Miscellaneus +------------ + +- `#1291 `_, `#1314 `_ + + 2.2.3 (2023-06-12) ================== diff --git a/README.rst b/README.rst index 74c154c8..e11a509a 100644 --- a/README.rst +++ b/README.rst @@ -24,12 +24,12 @@ pytest-dynamodb Package status -------------- -.. image:: https://travis-ci.org/ClearcodeHQ/pytest-dynamodb.svg?branch=v2.2.3 +.. image:: https://travis-ci.org/ClearcodeHQ/pytest-dynamodb.svg?branch=v2.3.0 :target: https://travis-ci.org/ClearcodeHQ/pytest-dynamodb :alt: Tests -.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-dynamodb/badge.png?branch=v2.2.3 - :target: https://coveralls.io/r/ClearcodeHQ/pytest-dynamodb?branch=v2.2.3 +.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-dynamodb/badge.png?branch=v2.3.0 + :target: https://coveralls.io/r/ClearcodeHQ/pytest-dynamodb?branch=v2.3.0 :alt: Coverage Status What is this? diff --git a/newsfragments/1291.misc.rst b/newsfragments/1291.misc.rst deleted file mode 100644 index 4d37832f..00000000 --- a/newsfragments/1291.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Update code formatting according to black 24.1 diff --git a/newsfragments/1314.misc.rst b/newsfragments/1314.misc.rst deleted file mode 100644 index a21be324..00000000 --- a/newsfragments/1314.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Rely on cached/artifacted Pipfile.lock. This allows to use pipenv seamlessly on more than single python versions. \ No newline at end of file diff --git a/newsfragments/1315.feature.rst b/newsfragments/1315.feature.rst deleted file mode 100644 index ef0b001f..00000000 --- a/newsfragments/1315.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add Support for Python 3.12 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0d9c4639..44c777e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytest-dynamodb" -version = "2.2.3" +version = "2.3.0" description = "DynamoDB fixtures for pytest" readme = "README.rst" keywords = ["tests", "pytest", "fixture", "dynamodb", "aws", "boto"] @@ -39,7 +39,7 @@ requires-python = ">= 3.8" [project.urls] "Source" = "https://github.com/ClearcodeHQ/pytest-dynamodb" "Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-dynamodb/issues" -"Changelog" = "https://github.com/ClearcodeHQ/pytest-dynamodb/blob/v2.2.3/CHANGES.rst" +"Changelog" = "https://github.com/ClearcodeHQ/pytest-dynamodb/blob/v2.3.0/CHANGES.rst" [project.entry-points."pytest11"] pytest_dynamodb = "pytest_dynamodb.plugin" @@ -102,7 +102,7 @@ showcontent = false # github_url = "https://github.com/ClearcodeHQ/pytest-dynamodb/" [tool.tbump.version] -current = "2.2.3" +current = "2.3.0" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/pytest_dynamodb/__init__.py b/pytest_dynamodb/__init__.py index 7f7cebae..6ee93086 100644 --- a/pytest_dynamodb/__init__.py +++ b/pytest_dynamodb/__init__.py @@ -17,4 +17,4 @@ # You should have received a copy of the GNU Lesser General Public License # along with pytest-dynamodb. If not, see . """Main module for pytest-dynamodb.""" -__version__ = "2.2.3" +__version__ = "2.3.0"