diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 41ea87d..f6a9e15 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.1" + ".": "1.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9051bf1..3fed4cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly SSE Client for Python will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [1.2.2](https://github.com/launchdarkly/python-eventsource/compare/1.2.1...1.2.2) (2025-02-28) + + +### Bug Fixes + +* Fix SSE delay reset handling ([#39](https://github.com/launchdarkly/python-eventsource/issues/39)) ([fd401b5](https://github.com/launchdarkly/python-eventsource/commit/fd401b5348a8a62b18b823bf9c0dbaf5001a7285)) + ## [1.2.1](https://github.com/launchdarkly/python-eventsource/compare/1.2.0...1.2.1) (2024-12-23) diff --git a/ld_eventsource/version.py b/ld_eventsource/version.py index 12a03d2..366f91c 100644 --- a/ld_eventsource/version.py +++ b/ld_eventsource/version.py @@ -1 +1 @@ -VERSION = "1.2.1" # x-release-please-version +VERSION = "1.2.2" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index 0db4dc2..23561d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-eventsource" -version = "1.2.1" +version = "1.2.2" description = "LaunchDarkly SSE Client" authors = ["LaunchDarkly "] license = "Apache-2.0"