Skip to content

Commit

Permalink
Release 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Sep 2, 2024
1 parent c985380 commit c56f891
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ CHANGELOG

.. towncrier release notes start
0.7.3 (2024-09-02)
==================

Features
--------

- Adds PortType to package __all__


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

- `#184 <https://github.com/kmike/port-for/issues/184>`__


0.7.2 (2023-10-10)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/+4931c0fb.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/+b61fb792.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/184.misc.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.2"
__version__ = "0.7.3"

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.2"
version = "0.7.3"
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.8"
[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.2/CHANGES.rst"
"Changelog" = "https://github.com/kmike/port-for/blob/v0.7.3/CHANGES.rst"

[project.scripts]
port-for = "port_for.cmd:main"
Expand Down Expand Up @@ -109,7 +109,7 @@ exclude = [
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "0.7.2"
current = "0.7.3"

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

0 comments on commit c56f891

Please sign in to comment.