diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e18ee07..37fcefa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d97b363..f6f2483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ # Change log All notable changes to the LaunchDarkly Python OTEL package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). + +## 1.0.0 (2024-04-30) + + +### Features + +* Add tracing hook implementation ([#1](https://github.com/launchdarkly/python-server-sdk-otel/issues/1)) ([3f13171](https://github.com/launchdarkly/python-server-sdk-otel/commit/3f13171770f81dcc932b66d2fd578e37c7e49bbd)) diff --git a/PROVENANCE.md b/PROVENANCE.md index 861c5df..96044a0 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -9,7 +9,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https ``` # Set the version of the library to verify -VERSION=9.3.1 +VERSION=1.0.0 ``` diff --git a/ldotel/__init__.py b/ldotel/__init__.py index 7739d03..1d55bba 100644 --- a/ldotel/__init__.py +++ b/ldotel/__init__.py @@ -1 +1 @@ -__version__ = "0.0.0" # x-release-please-version +__version__ = "1.0.0" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index 94ea340..5e0225a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-server-sdk-otel" -version = "0.0.0" +version = "1.0.0" description = "LaunchDarkly SDK OpenTelemetry integration" authors = ["LaunchDarkly "] license = "Apache-2.0"