Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 11, 2023
1 parent 6c631c1 commit d65697f
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 10 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 @@ CHANGES

.. towncrier release notes start
1.0.3 (2023-10-11)
==================

Features
--------

- Add support for Python 3.12 (`#388 <https://https://github.com/fizyk/pytest_pyramid/issues/388>`_)


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

- `#339 <https://https://github.com/fizyk/pytest_pyramid/issues/339>`_, `#357 <https://https://github.com/fizyk/pytest_pyramid/issues/357>`_, `#359 <https://https://github.com/fizyk/pytest_pyramid/issues/359>`_, `#385 <https://https://github.com/fizyk/pytest_pyramid/issues/385>`_


1.0.2 (2022-12-13)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/339.misc.rst

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/359.misc.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/388.feature.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_pyramid"
version = "1.0.2"
version = "1.0.3"
description = "pytest_pyramid - provides fixtures for testing pyramid applications with pytest test suite"
readme = "README.rst"
keywords = ["pyramid", "pytest", "testing"]
Expand Down Expand Up @@ -40,7 +40,7 @@ requires-python = ">= 3.8"
[project.urls]
"Source" = "https://github.com/fizyk/pytest_pyramid/"
"Bug Tracker" = "https://github.com/fizyk/pytest_pyramid/issues"
"Changelog" = "https://github.com/fizyk/pytest_pyramid/blob/v1.0.2/CHANGES.rst"
"Changelog" = "https://github.com/fizyk/pytest_pyramid/blob/v1.0.3/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_pyramid = "pytest_pyramid.plugin"
Expand Down Expand Up @@ -99,7 +99,7 @@ select = [
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "1.0.2"
current = "1.0.3"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion pytest_pyramid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# the MIT License (MIT): http://opensource.org/licenses/MIT
"""pytest_pyramid main module."""

__version__ = "1.0.2" # pragma: no cover
__version__ = "1.0.3" # pragma: no cover

0 comments on commit d65697f

Please sign in to comment.