Skip to content

Commit 8a395ff

Browse files
committed
Drop support for Ruby 2.6
1 parent d2533bf commit 8a395ff

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
ruby:
18-
- "2.6"
1918
- "2.7"
2019
- "3.0"
2120
- "3.1"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ spec/fixtures/credentials.yml
44
coverage/**
55
.yardoc/**
66
Gemfile.lock
7+
.ruby-version
78
vendor/bundle/**
89
pkg/**

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
inherit_from: .rubocop_todo.yml
22

33
AllCops:
4-
TargetRubyVersion: 2.6
4+
TargetRubyVersion: 2.7
55
DisplayCopNames: true
66
Exclude:
77
- .git/**/*

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.7.6

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22

33
## Unreleased
44

5-
## v1.38.0 (rc2)
5+
- Upcoming changes
6+
7+
## v1.38.0 (rc2 - BREAKING!)
68

7-
- Add `Label` resource for Articles
89
- Add support for Faraday 2.0
9-
- Drop support for Faraday 1 (BREAKING)
10-
- Add JRuby 9.3 to CI
10+
- Add `Label` resource for Articles
1111
- Add Ruby 3.2 to CI
12+
- Add JRuby 9.3 to CI
13+
- Drop support for Faraday 1
1214
- Drop support for JRuby 9.1, see https://github.com/zendesk/zendesk_api_client_rb/runs/8110095881
1315
- Drop support for JRuby 9.2, see https://github.com/zendesk/zendesk_api_client_rb/runs/8110151024
14-
- Drop support for 2.6, not supported by Faraday 2.0
16+
- Drop support for 2.6, we will try to support Ruby 2.7 for as long as possible
1517

1618
## v1.37.0
1719

zendesk_api.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
2323

2424
s.files = Dir.glob('{lib,util}/**/*') << 'LICENSE'
2525

26-
s.required_ruby_version = ">= 2.6"
26+
s.required_ruby_version = ">= 2.7"
2727
s.required_rubygems_version = ">= 1.3.6"
2828

2929
s.add_runtime_dependency "faraday", "> 2.0.0"

0 commit comments

Comments
 (0)