Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ History

.. towncrier release notes start

0.0.10 (2025-6-18)
------------------

* Fix Type Issues and add strict type checks using Ruff & Pyright
* Spec updates, Python 3.4- unsupport & custom registries by @ntninja in #59
* add quic-v1 protocol by @justheuristic in #63
* Fix/typecheck by @acul71 in #65
* chore: rm local pyrightconfig.json by @arcinston in #70

0.0.9 (2019-12-23)
------------------

Expand Down
2 changes: 1 addition & 1 deletion multiaddr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = "Steven Buss"
__email__ = "steven.buss@gmail.com"
__version__ = "0.0.9"
__version__ = "0.0.10"
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "multiaddr"
version = "0.0.9"
version = "0.0.10"
description = "Python implementation of jbenet's multiaddr"
readme = "README.rst"
authors = [{ name = "Steven Buss", email = "steven.buss@gmail.com" }]
Expand Down Expand Up @@ -135,7 +135,7 @@ name = "Removals"
showcontent = true

[tool.bumpversion]
current_version = "0.0.9"
current_version = "0.0.10"
parse = """
(?P<major>\\d+)
\\.(?P<minor>\\d+)
Expand Down Expand Up @@ -188,8 +188,8 @@ search = "__version__ = \"{current_version}\""
replace = "__version__ = \"{new_version}\""

[[tool.bumpversion.files]]
search = "Download = 'https://github.com/multiformats/py-multiaddr/tarball/{current_version}'"
replace = "Download = 'https://github.com/multiformats/py-multiaddr/tarball/{new_version}'"
search = "Download = \"https://github.com/multiformats/py-multiaddr/tarball/{current_version}\""
replace = "Download = \"https://github.com/multiformats/py-multiaddr/tarball/{new_version}\""

[tool.mypy]
python_version = "3.10"
Expand Down