diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 05e6669..e6e706c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changelog ========= +0.17.0 (2025-06-04) +------------------- + +- Fix qualifiers type annotations + https://github.com/package-url/packageurl-python/issues/169 + +- Fix parsing of names and namespaces with colons + https://github.com/package-url/packageurl-python/issues/152 + + 0.16.0 (2024-10-22) ------------------- diff --git a/Makefile b/Makefile index 6fea004..2b1593b 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,6 @@ valid: test: @echo "-> Run the test suite" - ${MANAGE} test --noinput bin/py.test tests .PHONY: virtualenv conf dev clean isort black mypy valid test diff --git a/setup.cfg b/setup.cfg index 668d254..39b73db 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = packageurl-python -version = 0.16.0 +version = 0.17.0 license = MIT description = A purl aka. Package URL parser and builder long_description = file:README.rst