From af8dad29be51d137f92b3e9f247d0d47d99b9bed Mon Sep 17 00:00:00 2001 From: Guillaume Gauvrit Date: Tue, 24 Sep 2024 16:28:51 +0200 Subject: [PATCH] Release 0.9.2 --- CHANGES.rst | 6 ++++++ pyproject.toml | 3 ++- zipkin/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index b9103b1..5b60037 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,14 @@ Changelog ========= +0.9.2 (2024-09-24) +------------------- +- Remove python2.7 support. +- Migrate packaging to poetry. + 0.9.1 (2024-09-24) ------------------- +- Remove python2.6 support. - Add trace_id and span_id in the python logging context. 0.8.4 (2021-07-21) diff --git a/pyproject.toml b/pyproject.toml index 5b8d39d..dd03380 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,13 @@ [tool.poetry] name = "zk" -version = "0.9.1" +version = "0.9.2" description = "zipkin" authors = ["Gandi "] license = "Apache" readme = "README.rst" keywords = ["zipkin", "metrics", "trace"] homepage = "https://github.com/Gandi/python-zipkin/" +packages = [{include = "zipkin"}] [tool.poetry.dependencies] python = "^3.7" diff --git a/zipkin/__init__.py b/zipkin/__init__.py index 09f85c6..b3f56ef 100644 --- a/zipkin/__init__.py +++ b/zipkin/__init__.py @@ -7,6 +7,6 @@ install_logger_factory() -__version__ = "0.9.1" +__version__ = "0.9.2" __all__ = ["trace", "Trace", "get_current_trace", "stack_trace", "configure", "local"]