Skip to content

Commit

Permalink
Release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 25, 2024
1 parent 976cb4d commit b271360
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ CHANGELOG

.. towncrier release notes start
2.4.0 (2024-10-25)
==================

Breaking changes
----------------

- Drop support for Python 3.8 (As it reached EOL already)


Features
--------

- Declare support for Python 3.13


2.3.0 (2024-03-12)
==================

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ pytest-dynamodb
Package status
--------------

.. image:: https://travis-ci.org/ClearcodeHQ/pytest-dynamodb.svg?branch=v2.3.0
.. image:: https://travis-ci.org/ClearcodeHQ/pytest-dynamodb.svg?branch=v2.4.0
:target: https://travis-ci.org/ClearcodeHQ/pytest-dynamodb
:alt: Tests

.. 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
.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-dynamodb/badge.png?branch=v2.4.0
:target: https://coveralls.io/r/ClearcodeHQ/pytest-dynamodb?branch=v2.4.0
:alt: Coverage Status

What is this?
Expand Down
1 change: 0 additions & 1 deletion newsfragments/+09443f1f.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/+7aff466a.break.rst

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pytest-dynamodb"
version = "2.3.0"
version = "2.4.0"
description = "DynamoDB fixtures for pytest"
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "dynamodb", "aws", "boto"]
Expand Down Expand Up @@ -39,7 +39,7 @@ requires-python = ">= 3.9"
[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.3.0/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-dynamodb/blob/v2.4.0/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_dynamodb = "pytest_dynamodb.plugin"
Expand Down Expand Up @@ -102,7 +102,7 @@ showcontent = false
# github_url = "https://github.com/ClearcodeHQ/pytest-dynamodb/"

[tool.tbump.version]
current = "2.3.0"
current = "2.4.0"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion pytest_dynamodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# You should have received a copy of the GNU Lesser General Public License
# along with pytest-dynamodb. If not, see <http://www.gnu.org/licenses/>.
"""Main module for pytest-dynamodb."""
__version__ = "2.3.0"
__version__ = "2.4.0"

0 comments on commit b271360

Please sign in to comment.