diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d0972da..f2ada20 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.7.1" + ".": "1.7.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e5ac2..90243f3 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.7.2](https://github.com/launchdarkly/python-eventsource/compare/1.7.1...1.7.2) (2026-07-22) + + +### Bug Fixes + +* Close streaming connections deterministically where the platform allows ([#74](https://github.com/launchdarkly/python-eventsource/issues/74)) ([90a7045](https://github.com/launchdarkly/python-eventsource/commit/90a7045f3f112a2c48d68fcab2cfda770d4187c3)) + ## [1.7.1](https://github.com/launchdarkly/python-eventsource/compare/1.7.0...1.7.1) (2026-06-25) diff --git a/ld_eventsource/version.py b/ld_eventsource/version.py index 603c671..afe3bd6 100644 --- a/ld_eventsource/version.py +++ b/ld_eventsource/version.py @@ -1 +1 @@ -VERSION = "1.7.1" # x-release-please-version +VERSION = "1.7.2" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index 687c5f0..20d988b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "launchdarkly-eventsource" -version = "1.7.1" +version = "1.7.2" description = "LaunchDarkly SSE Client" authors = [ {name = "LaunchDarkly", email = "dev@launchdarkly.com"}