Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Feb 27, 2023
1 parent b3572ce commit 500c3ac
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 18 deletions.
29 changes: 29 additions & 0 deletions CHANGES.rst
Expand Up @@ -3,6 +3,35 @@ CHANGELOG

.. towncrier release notes start
2.2.0 (2023-02-27)
==================

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

- Dropped support for Python 3.7 due to using TypeDict for configuration. (`#1127 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1127>`_)


Features
--------

- Support python 3.10 (`#939 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/939>`_)
- Add support for Python 3.11 (`#1116 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1116>`_)
- Added typing and check code with mypy.
Also configuration is being TypeChecked with TypeDict. (`#1127 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1127>`_)


Miscellaneus
------------

- Fix broken link to dynamodb documentation - introduce delays (`#846 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/846>`_)
- Add towncrier to manage newsfragments and generate changelog (`#1114 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1114>`_)
- Migrate development dependency management to pipenv (`#1115 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1115>`_)
- Add your info here (`#1117 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1117>`_)
- Add automerge action to use Application authentication. (`#1118 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1118>`_)
- Use tbump to manage package versioning (`#1119 <https://https://github.com/ClearcodeHQ/pytest-dynamodb/issues/1119>`_)


2.1.0
=====

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -24,12 +24,12 @@ pytest-dynamodb
Package status
--------------

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

.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-dynamodb/badge.png?branch=v2.1.0
:target: https://coveralls.io/r/ClearcodeHQ/pytest-dynamodb?branch=v2.1.0
.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-dynamodb/badge.png?branch=v2.2.0
:target: https://coveralls.io/r/ClearcodeHQ/pytest-dynamodb?branch=v2.2.0
:alt: Coverage Status

What is this?
Expand Down
1 change: 0 additions & 1 deletion newsfragments/1114.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/1115.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/1116.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/1117.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/1118.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/1119.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/1127.break.rst

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/1127.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/846.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/939.feature.rst

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "pytest-dynamodb"
version = "2.1.0"
version = "2.2.0"
description = "DynamoDB fixtures for pytest"
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "dynamodb", "aws", "boto"]
Expand Down Expand Up @@ -38,7 +38,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.1.0/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-dynamodb/blob/v2.2.0/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_pyramid = "pytest_dynamodb.plugin"
Expand Down Expand Up @@ -94,7 +94,7 @@ ignore = "D203,D212"
github_url = "https://github.com/ClearcodeHQ/pytest-dynamodb/"

[tool.tbump.version]
current = "2.1.0"
current = "2.2.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
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.1.0"
__version__ = "2.2.0"

0 comments on commit 500c3ac

Please sign in to comment.