diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 94b7c8b..10c84b4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = False tag_name = {new_version} diff --git a/.gitmoji-changelogrc b/.gitmoji-changelogrc index faaa6cb..47787aa 100644 --- a/.gitmoji-changelogrc +++ b/.gitmoji-changelogrc @@ -2,6 +2,6 @@ "project": { "name": "otel-client-python", "description": "A human-friendly OpenTelemetry CLI", - "version": "0.3.0" + "version": "0.3.1" } } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dd9db4..b0a1536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog + +## 0.3.1 (2022-11-30) + +### Fixed + +- 💚 Fix release workflow [[a7ba4bf](https://github.com/dell/opentelemetry-cli/commit/a7ba4bfc847f4070453b203b39cf6be15fad68d8)] + + ## 0.3.0 (2022-11-30) diff --git a/otel_cli/__init__.py b/otel_cli/__init__.py index 6557ecd..9b345f0 100644 --- a/otel_cli/__init__.py +++ b/otel_cli/__init__.py @@ -2,4 +2,4 @@ __author__ = """Moshi Binyamini""" __email__ = "moshi.binyamini@dell.com" -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/pyproject.toml b/pyproject.toml index 92831f7..081578f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otel-cli" -version = "0.3.0" +version = "0.3.1" description = "CLI for OpenTelemetry Traces and Metrics in Python" authors = ["Moshi Binyamini "] readme = "README.md"