From 6c24abb279b8ff6742f0e0161bad3f37b8cbf2ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Thu, 19 Dec 2024 10:52:09 +0100 Subject: [PATCH] chore: bump version to 6.0.10 --- CHANGELOG.md | 4 ++++ README.md | 2 +- lib/unleash/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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