From f4b07df371d3910c575e4c5c0c1364688c803bb7 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Tue, 21 Jan 2025 11:32:20 +0100 Subject: [PATCH] chore: bump version to 6.1.0 (#225) --- CHANGELOG.md | 5 +++++ README.md | 2 +- lib/unleash/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c8572bf..fa188bcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,11 @@ Note: These changes are not considered notable: ## [Unreleased] +## [6.1.0] - 2025-01-21 +### Added +- standardised client identification headers (#224) + + ## [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) diff --git a/README.md b/README.md index 95860390..ccce9aed 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.10' +gem 'unleash', '~> 6.1.0' ``` And then execute: diff --git a/lib/unleash/version.rb b/lib/unleash/version.rb index 8978aaaf..ac2df892 100644 --- a/lib/unleash/version.rb +++ b/lib/unleash/version.rb @@ -1,3 +1,3 @@ module Unleash - VERSION = "6.0.10".freeze + VERSION = "6.1.0".freeze end