diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b7298f8..8d35a90 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.3" + ".": "1.2.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f46e59..758dfa0 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.4](https://github.com/launchdarkly/python-eventsource/compare/1.2.3...1.2.4) (2025-05-29) + + +### Bug Fixes + +* Catch all response.shutdown exceptions ([#45](https://github.com/launchdarkly/python-eventsource/issues/45)) ([cd7262e](https://github.com/launchdarkly/python-eventsource/commit/cd7262e4a506f49e1c55ab3624855df3e5954d8d)) + ## [1.2.3](https://github.com/launchdarkly/python-eventsource/compare/1.2.2...1.2.3) (2025-05-29) diff --git a/ld_eventsource/version.py b/ld_eventsource/version.py index 8bf9483..5b1d550 100644 --- a/ld_eventsource/version.py +++ b/ld_eventsource/version.py @@ -1 +1 @@ -VERSION = "1.2.3" # x-release-please-version +VERSION = "1.2.4" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index ba5cbd8..7e33f45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-eventsource" -version = "1.2.3" +version = "1.2.4" description = "LaunchDarkly SSE Client" authors = ["LaunchDarkly "] license = "Apache-2.0"