diff --git a/CHANGES.rst b/CHANGES.rst index 889d0458..fd57f8ec 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `_, `#726 `_, `#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) ================== diff --git a/mirakuru/__init__.py b/mirakuru/__init__.py index 91d5e040..80c430ff 100644 --- a/mirakuru/__init__.py +++ b/mirakuru/__init__.py @@ -32,7 +32,7 @@ from mirakuru.pid import PidExecutor from mirakuru.tcp import TCPExecutor -__version__ = "2.5.2" +__version__ = "2.5.3" __all__ = ( "Executor", diff --git a/newsfragments/+0e5f4193.feature.rst b/newsfragments/+0e5f4193.feature.rst deleted file mode 100644 index fa725d7a..00000000 --- a/newsfragments/+0e5f4193.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for Python 3.13 \ No newline at end of file diff --git a/newsfragments/+ceb0e424.misc.rst b/newsfragments/+ceb0e424.misc.rst deleted file mode 100644 index 4949c94d..00000000 --- a/newsfragments/+ceb0e424.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -* 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 diff --git a/newsfragments/+f5d4730a.break.rst b/newsfragments/+f5d4730a.break.rst deleted file mode 100644 index c7eb433c..00000000 --- a/newsfragments/+f5d4730a.break.rst +++ /dev/null @@ -1 +0,0 @@ -Dropped support for Python 3.8 (As it reached EOL) diff --git a/newsfragments/724.misc.rst b/newsfragments/724.misc.rst deleted file mode 100644 index 0b1b304d..00000000 --- a/newsfragments/724.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Update code formatting with black 24.1 diff --git a/newsfragments/726.misc.rst b/newsfragments/726.misc.rst deleted file mode 100644 index 1745fb1c..00000000 --- a/newsfragments/726.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Swap pypy3.8 on CI with pypy 3.9 \ No newline at end of file diff --git a/newsfragments/742.misc.rst b/newsfragments/742.misc.rst deleted file mode 100644 index d53d79a6..00000000 --- a/newsfragments/742.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Limit the number of python versions run on macosx diff --git a/pyproject.toml b/pyproject.toml index 8e52fba0..60c75214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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"] @@ -105,7 +105,7 @@ select = [ # github_url = "https://github.com///" [tool.tbump.version] -current = "2.5.2" +current = "2.5.3" # Example of a semver regexp. # Make sure this matches current_version before