Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ Note: These changes are not considered notable:

## [Unreleased]

## [6.7.0] - 2026-03-17

### Added
- CIDR and Semver LTE and GTE constraints

## [6.6.0] - 2026-03-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/unleash/spec_version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Unleash
CLIENT_SPECIFICATION_VERSION = "6.0.1".freeze
CLIENT_SPECIFICATION_VERSION = "6.1.0".freeze
end
2 changes: 1 addition & 1 deletion lib/unleash/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Unleash
VERSION = "6.6.0".freeze
VERSION = "6.7.0".freeze
end
2 changes: 1 addition & 1 deletion spec/unleash/configuration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
'UNLEASH-INSTANCEID' => config.instance_id,
'UNLEASH-CONNECTION-ID' => fixed_uuid,
'UNLEASH-SDK' => "unleash-ruby-sdk:#{Unleash::VERSION}",
'Unleash-Client-Spec' => '6.0.1',
'Unleash-Client-Spec' => Unleash::CLIENT_SPECIFICATION_VERSION,
'User-Agent' => "UnleashClientRuby/#{Unleash::VERSION} #{RUBY_ENGINE}/#{RUBY_VERSION} [#{RUBY_PLATFORM}]"
}
)
Expand Down
2 changes: 1 addition & 1 deletion unleash-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.7"

spec.add_dependency "ld-eventsource", "2.2.4" unless RUBY_ENGINE == 'jruby'
spec.add_dependency "yggdrasil-engine", "~> 1.2.2"
spec.add_dependency "yggdrasil-engine", "~> 1.3.0"

spec.add_dependency "base64", "~> 0.3.0"
spec.add_dependency "logger", "~> 1.6"
Expand Down
Loading