diff --git a/.env.dist b/.env.dist index 58164f0..6288988 100644 --- a/.env.dist +++ b/.env.dist @@ -1,4 +1,4 @@ -VERSION=0.9.6 +VERSION=0.9.7 PYPI_USERNAME=__token__ PYPI_PASSWORD= #api token for primary repo PYPI_PASSWORD_DEV= #api token for dev repo diff --git a/CHANGES.rst b/CHANGES.rst index 5787fd0..23d4cab 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,20 +4,24 @@ Changelog This project uses Semantic Versioning -- https://semver.org +0.9.7 +------- + +- 🐞 FIX: division by 0 error when invoking with some options, but without arguments -v0.9.6 +0.9.6 ------- - Temporarily included `pytermor` as bundled package because 2.x is still in "dev" status. - 🐞 FIX: average request latency calculation when all requests failed -v0.9.5 +0.9.5 ------- - Implementation of all intended features. -v0.9.0 +0.9.0 ------- - Core diff --git a/docs/conf.py b/docs/conf.py index d118229..f23ab4e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -81,7 +81,7 @@ }, { "name": "github", - "url": "https://github.com/delameter/macedon", + "url": "https://github.com/es7s/macedon", "html": """ diff --git a/macedon/_version.py b/macedon/_version.py index 0b00812..21fe24f 100644 --- a/macedon/_version.py +++ b/macedon/_version.py @@ -3,4 +3,4 @@ # (c) 2022-2023 A. Shavykin <0.delameter@gmail.com> # ----------------------------------------------------------------------------- -__version__ = "0.9.6" +__version__ = "0.9.7" diff --git a/setup.cfg b/setup.cfg index a5cd0a3..08923a9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [metadata] name = macedon -version = 0.9.6 +version = 0.9.7 author = Aleksandr Shavykin author_email = 0.delameter@gmail.com description = CLI web service availability verifier long_description = file: README.md long_description_content_type = text/markdown -url = https://github.com/delameter/macedon +url = https://github.com/es7s/macedon project_urls = classifiers = Environment :: Console