Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: drop ruby 2.6 #208

Merged
merged 2 commits into from
Sep 30, 2024
Merged
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
2 changes: 0 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ jobs:
- macos
ruby-version:
- jruby-9.4
- jruby-9.3
- 3.3
- 3.2
- 3.1
- '3.0'
- 2.7
- 2.6

needs:
- lint
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7

Naming/PredicateName:
AllowedMethods:
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Ruby client for the [Unleash](https://github.com/Unleash/unleash) feature management service.

> **Migrating to v6**
> **Migrating to v6**
>
> If you use [custom strategies](#custom-strategies) or override built-in ones, read the complete [migration guide](./v6_MIGRATION_GUIDE.md) before upgrading to v6.

Expand All @@ -18,9 +18,7 @@ Ruby client for the [Unleash](https://github.com/Unleash/unleash) feature manage
- MRI 3.1
- MRI 3.0
- MRI 2.7
- MRI 2.6
- jruby 9.4
- jruby 9.3

## Installation

Expand Down
2 changes: 1 addition & 1 deletion unleash-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/unleash}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.6"
spec.required_ruby_version = ">= 2.7"

spec.add_dependency "murmurhash3", "~> 0.1.7"
spec.add_dependency "yggdrasil-engine", "~> 0.0.6"
Expand Down
Loading