diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 43c1ca1..7bfa99b 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.1.3
+current_version = 0.2.0
commit = True
tag = False
tag_name = {new_version}
diff --git a/.gitmoji-changelogrc b/.gitmoji-changelogrc
index 41d0f16..1cc9874 100644
--- a/.gitmoji-changelogrc
+++ b/.gitmoji-changelogrc
@@ -2,6 +2,6 @@
"project": {
"name": "otel-client-python",
"description": "A human-friendly OpenTelemetry CLI",
- "version": "0.1.3"
+ "version": "0.2.0"
}
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 57246f8..6bb67bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,32 @@
# Changelog
+
+## 0.2.0 (2022-08-24)
+
+### Added
+
+- ✨ Add support for array attributes Fixes #7 [d60fb6b]
+- ✅ Include `str:` attribute prefix in tests [b8cf709]
+- ✨ Support str: prefix for attributes Fixes #6 [6d5c574]
+- ✅ Add tests for updown counter from CLI [f19c923]
+- ✅ Add tests for updown counters [13dffb8]
+- ✨ Add UpDownCounter support to otel-cli metrics Fixes #5 [af94026]
+
+### Changed
+
+- ⬆️ Bump opentelemetry libs to 1.12.0 [8707340]
+
+### Removed
+
+- ➖ Remove mypy pre-commit hook [09428c8]
+- ➖ Remove pytest-otel [a93f4f9]
+
+### Miscellaneous
+
+- 📝 Update command name in docs to "otel" [fe32825]
+- 📝 Add documentation about updown counters [3053e6f]
+
+
## 0.1.3 (2022-08-10)
diff --git a/otel_cli/__init__.py b/otel_cli/__init__.py
index 8c1168f..4a99d27 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.1.3"
+__version__ = "0.2.0"
diff --git a/pyproject.toml b/pyproject.toml
index d30f361..07a12ab 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "otel-cli"
-version = "0.1.3"
+version = "0.2.0"
description = "CLI for OpenTelemetry Traces and Metrics in Python"
authors = ["Moshi Binyamini "]
readme = "README.md"