Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jul 14, 2023
1 parent decb2fb commit fda6b1e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/kmike/port-for/issues/149>`_)


0.7.0 (2023-06-15)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/149.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion port_for/__init__.py
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -87,7 +87,7 @@ include = '.*\.pyi?$'
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "0.7.0"
current = "0.7.1"

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

0 comments on commit fda6b1e

Please sign in to comment.