diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefa..5fdd883 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f6f2483..6a3d941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ 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.1.0](https://github.com/launchdarkly/python-server-sdk-otel/compare/1.0.0...1.1.0) (2025-06-26) + + +### ⚠ BREAKING CHANGES + +* Drop support for Python 3.8 (eol 2024-10-07) ([#33](https://github.com/launchdarkly/python-server-sdk-otel/issues/33)) + +### Features + +* Drop support for Python 3.8 (eol 2024-10-07) ([#33](https://github.com/launchdarkly/python-server-sdk-otel/issues/33)) ([cef8e50](https://github.com/launchdarkly/python-server-sdk-otel/commit/cef8e50812f134e684c8d15dcd720c0b57c8cfaa)) + ## 1.0.0 (2024-04-30) diff --git a/PROVENANCE.md b/PROVENANCE.md index 04b2e44..e00bcec 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=1.0.0 +VERSION=1.1.0 ``` diff --git a/ldotel/__init__.py b/ldotel/__init__.py index 1d55bba..4fde32c 100644 --- a/ldotel/__init__.py +++ b/ldotel/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0" # x-release-please-version +__version__ = "1.1.0" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index 66db512..c1a7441 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-server-sdk-otel" -version = "1.0.0" +version = "1.1.0" description = "LaunchDarkly SDK OpenTelemetry integration" authors = ["LaunchDarkly "] license = "Apache-2.0"