diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d15f5ed..9485046 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.2.2" + ".": "2.2.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 95b5459..becc439 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly SSE Client for Ruby will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.2.3](https://github.com/launchdarkly/ruby-eventsource/compare/2.2.2...2.2.3) (2025-03-07) + + +### Bug Fixes + +* Provide thread name for inspection ([#46](https://github.com/launchdarkly/ruby-eventsource/issues/46)) ([191fd68](https://github.com/launchdarkly/ruby-eventsource/commit/191fd68f539447fda22c4cbcdfe575984658780a)) + ## [2.2.2] - 2023-03-13 ### Fixed: - Content-Type checking was failing in some environments due to casing issues. Updated check to use a more robust header retrieval method. (Thanks, [matt-dutchie](https://github.com/launchdarkly/ruby-eventsource/pull/36)!) diff --git a/lib/ld-eventsource/version.rb b/lib/ld-eventsource/version.rb index 36c090f..40ce3e3 100644 --- a/lib/ld-eventsource/version.rb +++ b/lib/ld-eventsource/version.rb @@ -1,3 +1,3 @@ module SSE - VERSION = "2.2.2" # x-release-please-version + VERSION = "2.2.3" # x-release-please-version end