diff --git a/CHANGES.rst b/CHANGES.rst index 783de15..2d06ed8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ CHANGES .. towncrier release notes start +1.0.3 (2023-10-11) +================== + +Miscellaneus +------------ + +- `#339 `_, `#357 `_, `#359 `_, `#385 `_ + + 1.0.2 (2022-12-13) ================== diff --git a/newsfragments/339.misc.rst b/newsfragments/339.misc.rst deleted file mode 100644 index 5fe73f3..0000000 --- a/newsfragments/339.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Reformat code with black 23.* \ No newline at end of file diff --git a/newsfragments/357.misc.rst b/newsfragments/357.misc.rst deleted file mode 100644 index 8ef9331..0000000 --- a/newsfragments/357.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Adjust workflows for actions-reuse > 2 diff --git a/newsfragments/359.misc.rst b/newsfragments/359.misc.rst deleted file mode 100644 index ad111fb..0000000 --- a/newsfragments/359.misc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Use ruff instead of pydocstyle and pycodestyle. -Increase line-length limit to 90 characters \ No newline at end of file diff --git a/newsfragments/385.misc.rst b/newsfragments/385.misc.rst deleted file mode 100644 index 14d5e88..0000000 --- a/newsfragments/385.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Drop pipfile.lock from repository,rely on cached/artifact per each python version diff --git a/pyproject.toml b/pyproject.toml index 01ff707..d60c92a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -39,7 +39,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" @@ -98,7 +98,7 @@ select = [ # github_url = "https://github.com///" [tool.tbump.version] -current = "1.0.2" +current = "1.0.3" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/pytest_pyramid/__init__.py b/pytest_pyramid/__init__.py index 0fdb66a..9ff6abb 100644 --- a/pytest_pyramid/__init__.py +++ b/pytest_pyramid/__init__.py @@ -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