diff --git a/CHANGELOG.md b/CHANGELOG.md index ab3d38f..2c8572b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ Note: These changes are not considered notable: ## [Unreleased] +## [6.0.10] - 2024-12-19 +### Fixed +- Fixed an edge case issue where the client was failing to send metrics after 10 minutes of not having metrics (#219) + ## [6.0.9] - 2024-11-21 ### Fixed - Fixed an issue where the server not sending the encoding would break file saving (#215) diff --git a/README.md b/README.md index 809bf02..9586039 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Ruby client for the [Unleash](https://github.com/Unleash/unleash) feature manage Add this line to your application's Gemfile: ```ruby -gem 'unleash', '~> 6.0.7' +gem 'unleash', '~> 6.0.10' ``` And then execute: diff --git a/lib/unleash/version.rb b/lib/unleash/version.rb index 4172f34..8978aaa 100644 --- a/lib/unleash/version.rb +++ b/lib/unleash/version.rb @@ -1,3 +1,3 @@ module Unleash - VERSION = "6.0.9".freeze + VERSION = "6.0.10".freeze end