From fda6b1e62b9d2332c257f1a936c3cd462290b29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Fri, 14 Jul 2023 17:08:47 +0200 Subject: [PATCH] Release 0.7.1 --- CHANGES.rst | 9 +++++++++ newsfragments/149.feature.rst | 1 - port_for/__init__.py | 2 +- pyproject.toml | 6 +++--- 4 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 newsfragments/149.feature.rst diff --git a/CHANGES.rst b/CHANGES.rst index 4eafa25..3f8c3f2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ CHANGELOG .. towncrier release notes start +0.7.1 (2023-07-14) +================== + +Features +-------- + +- Add `PortType` type alias for easier typing related code (`#149 `_) + + 0.7.0 (2023-06-15) ================== diff --git a/newsfragments/149.feature.rst b/newsfragments/149.feature.rst deleted file mode 100644 index 08107e3..0000000 --- a/newsfragments/149.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add `PortType` type alias for easier typing related code \ No newline at end of file diff --git a/port_for/__init__.py b/port_for/__init__.py index df477a4..15c664d 100644 --- a/port_for/__init__.py +++ b/port_for/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """port_for package.""" -__version__ = "0.7.0" +__version__ = "0.7.1" from ._ranges import UNASSIGNED_RANGES from .api import ( diff --git a/pyproject.toml b/pyproject.toml index c962ba0..608e240 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "port-for" -version = "0.7.0" +version = "0.7.1" description = "Utility that helps with local TCP ports management. It can find an unused TCP localhost port and remember the association." readme = "README.rst" keywords = ["port", "posix"] @@ -33,7 +33,7 @@ requires-python = ">= 3.7" [project.urls] "Source" = "https://github.com/kmike/port-for/" "Bug Tracker" = "https://github.com/kmike/port-for/issues" -"Changelog" = "https://github.com/kmike/port-for/blob/v0.7.0/CHANGES.rst" +"Changelog" = "https://github.com/kmike/port-for/blob/v0.7.1/CHANGES.rst" [project.scripts] port-for = "port_for.cmd:main" @@ -87,7 +87,7 @@ include = '.*\.pyi?$' # github_url = "https://github.com///" [tool.tbump.version] -current = "0.7.0" +current = "0.7.1" # Example of a semver regexp. # Make sure this matches current_version before