Skip to content

Commit 8e27be2

Browse files
authored
Merge pull request #553 from andyundso/remove-older-rubies
Drop support for Ruby < 2.7
2 parents 0d3f025 + c9fa14d commit 8e27be2

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

.circleci/config.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,6 @@ workflows:
385385
matrix: &ruby_versions
386386
parameters:
387387
ruby_version:
388-
- '2.4'
389-
- '2.5'
390-
- '2.6'
391388
- '2.7'
392389
- '3.0'
393390
- '3.1'
@@ -397,13 +394,4 @@ workflows:
397394
matrix: *ruby_versions
398395

399396
- install_windows:
400-
matrix:
401-
parameters:
402-
ruby_version:
403-
- '2.5'
404-
- '2.6'
405-
- '2.7'
406-
- '3.0'
407-
- '3.1'
408-
- '3.2'
409-
- '3.3'
397+
matrix: *ruby_versions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## (unreleased)
2+
3+
* Drop support for Ruby < 2.7
4+
15
## 2.1.7
26
* Add Ruby 3.3 to the cross compile list
37

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require_relative './ext/tiny_tds/extconsts'
88
SPEC = Gem::Specification.load(File.expand_path('../tiny_tds.gemspec', __FILE__))
99

1010
ruby_cc_ucrt_versions = "3.3.0:3.2.0:3.1.0".freeze
11-
ruby_cc_mingw32_versions = "3.0.0:2.7.0:2.6.0:2.5.0:2.4.0".freeze
11+
ruby_cc_mingw32_versions = "3.0.0:2.7.0".freeze
1212

1313
GEM_PLATFORM_HOSTS = {
1414
'x86-mingw32' => {

tiny_tds.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
1818
s.rdoc_options = ['--charset=UTF-8']
1919
s.extensions = ['ext/tiny_tds/extconf.rb']
2020
s.license = 'MIT'
21-
s.required_ruby_version = '>= 2.0.0'
21+
s.required_ruby_version = '>= 2.7.0'
2222
s.metadata['msys2_mingw_dependencies'] = 'freetds'
2323
s.add_development_dependency 'mini_portile2', '~> 2.5.0'
2424
s.add_development_dependency 'rake', '~> 13.0.0'

0 commit comments

Comments
 (0)