Skip to content

Commit

Permalink
Release 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 11, 2024
1 parent dcd7637 commit be57d1c
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 12 deletions.
24 changes: 24 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@ CHANGELOG

.. towncrier release notes start
2.5.3 (2024-10-11)
==================

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

- Dropped support for Python 3.8 (As it reached EOL)


Features
--------

- Added support for Python 3.13


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

- `#724 <https://github.com/ClearcodeHQ/mirakuru/issues/724>`_, `#726 <https://github.com/ClearcodeHQ/mirakuru/issues/726>`_, `#742 <https://github.com/ClearcodeHQ/mirakuru/issues/742>`_
- * Extended line-lenght to 100 characters
* updated test_forgotten_stop as on CI on
Python 3.13 it lost one character out of the marker


2.5.2 (2023-10-17)
==================

Expand Down
2 changes: 1 addition & 1 deletion mirakuru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from mirakuru.pid import PidExecutor
from mirakuru.tcp import TCPExecutor

__version__ = "2.5.2"
__version__ = "2.5.3"

__all__ = (
"Executor",
Expand Down
1 change: 0 additions & 1 deletion newsfragments/+0e5f4193.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions newsfragments/+ceb0e424.misc.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/742.misc.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 = "mirakuru"
version = "2.5.2"
version = "2.5.3"
description = "Process executor (not only) for tests."
readme = "README.rst"
keywords = ["process", "executor", "tests", "orchestration"]
Expand Down Expand Up @@ -35,7 +35,7 @@ requires-python = ">= 3.9"
[project.urls]
"Source" = "https://github.com/ClearcodeHQ/mirakuru"
"Bug Tracker" = "https://github.com/ClearcodeHQ/mirakuru/issues"
"Changelog" = "https://github.com/ClearcodeHQ/mirakuru/blob/v2.5.2/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/mirakuru/blob/v2.5.3/CHANGES.rst"

[build-system]
requires = ["setuptools >= 61.0.0", "wheel"]
Expand Down Expand Up @@ -105,7 +105,7 @@ select = [
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "2.5.2"
current = "2.5.3"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit be57d1c

Please sign in to comment.