diff --git a/CHANGES.rst b/CHANGES.rst index d59e680..05367ec 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,16 +13,16 @@ CHANGES .. towncrier release notes start -1.1.1a1 (2021-10-23) -==================== +1.1.1 (2021-10-23) +================== Bugfixes -------- - Fix unhandled AssertionError in aiohttp integration when unknown resource requested by the user. - `#400 `_ + `#400 `_ - Fix ``NoneType`` error when using ``SystemRoute``. - `#410 `_ + `#410 `_ ---- @@ -34,7 +34,7 @@ Bugfixes -------- - Expect trace request context to be of SimpleNamespace type. - `#385 `_ + `#385 `_ ---- @@ -47,7 +47,7 @@ Bugfixes -------- - Support Python 3.8 and Python 3.9 - `#259 `_ + `#259 `_ ---- @@ -69,7 +69,7 @@ Features -------- - Add support of AWS X-Ray trace id format. - `#273 `_ + `#273 `_ ---- diff --git a/aiozipkin/__init__.py b/aiozipkin/__init__.py index 7d760d9..75bc84b 100644 --- a/aiozipkin/__init__.py +++ b/aiozipkin/__init__.py @@ -23,7 +23,7 @@ from .tracer import Tracer, create, create_custom -__version__ = "1.1.1a1" +__version__ = "1.1.1" __all__ = ( "Tracer", "Sampler", diff --git a/pyproject.toml b/pyproject.toml index 2d37f13..e83ca7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,4 +4,4 @@ filename = "CHANGES.rst" directory = "CHANGES/" title_format = "{version} ({project_date})" template = "CHANGES/.TEMPLATE.rst" -issue_format = "`#{issue} `_" +issue_format = "`#{issue} `_"