diff --git a/CHANGELOG.md b/CHANGELOG.md index d8f26b6..d76bafb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Elastic Distribution of OpenTelemetry Python Changelog +## v1.10.1 + +- Fix print of EDOT configuration at startup (#431) + ## v1.10.0 - Wire up composite sampler (#410) diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 5d04a9c..34e5075 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -27,6 +27,13 @@ To check for security updates, go to [Security announcements for the Elastic sta % ### Fixes [edot-python-X.X.X-fixes] % * + +## 1.10.1 [edot-python-1.10.1-release-notes] + +### Fixes [edot-python-1.10.1-fixes] + +- Fix print of EDOT configuration at startup ([#431](https://github.com/elastic/elastic-otel-python/pull/431)) + ## 1.10.0 [edot-python-1.10.0-release-notes] ### Features and enhancements [edot-python-1.10.0-features-enhancements] diff --git a/src/elasticotel/distro/version.py b/src/elasticotel/distro/version.py index 869cbc7..edaf346 100644 --- a/src/elasticotel/distro/version.py +++ b/src/elasticotel/distro/version.py @@ -14,4 +14,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.10.0" +__version__ = "1.10.1"