Skip to content

Commit 61fbfe4

Browse files
committed
Drop Ruby 2 support
1 parent 25a7f83 commit 61fbfe4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
ruby-version: ['2.7', '3.0', '3.1', '3.2']
16+
ruby-version: ["3.0", "3.1", "3.2"]
1717
cldr-version: [41]
1818

1919
steps:

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inherit_gem:
55
rubocop-shopify: rubocop.yml
66

77
AllCops:
8-
TargetRubyVersion: 2.7
8+
TargetRubyVersion: 3.0
99
UseCache: true
1010
CacheRootDirectory: tmp/rubocop
1111
NewCops: enable

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4545
- `Numbers` component now outputs data from all number systems, [#189](https://github.com/ruby-i18n/ruby-cldr/pull/189)
4646
- Use `snake_case` for key names unless they are an external identifier, [#207](https://github.com/ruby-i18n/ruby-cldr/pull/207)
4747
- Add `WeekData` component, [#229](https://github.com/ruby-i18n/ruby-cldr/pull/229)
48+
- Drop support for Ruby 2, [#265](https://github.com/ruby-i18n/ruby-cldr/pull/265)
4849

4950
---
5051

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ There are still a number of issues that need to be addressed before it can be co
1616

1717
## Requirements
1818

19-
* Ruby 2.7+
19+
* Ruby 3.0+
2020
* [Thor](http://whatisthor.com/)
2121

2222
## Installation

0 commit comments

Comments
 (0)