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

Upgrade to CLDR v43 #270

Merged
merged 4 commits into from
Aug 29, 2023
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1]
ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# TwitterCldr Changelog

### 6.12.0 (Aug 28th, 2023)
* Upgrade to CLDR v43, ICU 73.2, and Unicode v15.0.0.

### 6.11.5 (Mar 19th, 2023)
* Fix bug causing locale codes to be converted before language lookup (#263)
- During `TwitterCldr::Shared::Languages.from_code_for_locale(:nn, :en)`, the `:nn` locale code was converted to `:nb` before lookup, causing "Norwegian Bokmål" to be returned instead of "Norwegian Nynorsk".
Expand Down
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group :development, :test do
# gemspec allows any version, but most people are probably using 1.x, so
# let's test and develop against that
gem 'tzinfo', '< 2'
gem 'tzinfo-data', '= 1.2021.1' # try to keep in sync with ICU
gem 'tzinfo-data', '= 1.2023.3' # try to keep in sync with ICU
end

group :development do
Expand All @@ -23,6 +23,8 @@ group :development do
gem 'ruby-cldr', github: 'camertron/ruby-cldr', branch: 'mapzones' # 'svenfuchs/ruby-cldr'
gem 'i18n'
gem 'cldr-plurals', '~> 1.1'
gem 'net-ftp'
gem 'rexml'
end

group :test do
Expand Down
Loading
Loading