Skip to content

Commit

Permalink
Update dependencies (supports Unicode & Emoji 16.0); release v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janlelis committed Sep 13, 2024
1 parent 87ac0e5 commit 4903882
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## CHANGELOG

### 1.10.0 (unreleased)

- Update Unicode data to 16.0 (except for grapheme detection, which depends on Ruby's version)
- Update Emoji data to 16.0

### 1.9.0

- Update Unicode data to 15.1 (except for grapheme detection, which depends on Ruby's version)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# uniscribe | Describe the Unicode [![[version]](https://badge.fury.io/rb/uniscribe.svg)](https://badge.fury.io/rb/uniscribe) [![[ci]](https://github.com/janlelis/uniscribe/workflows/Test/badge.svg)](https://github.com/janlelis/uniscribe/actions?query=workflow%3ATest)

Describes Unicode characters with their name and shows compositions. **UNICODE 15.1**\*
Describes Unicode characters with their name and shows compositions. **UNICODE 16.0**\*

- Helps you understand how glyphs and codepoints are structured within the data
- Gives you the names of glyphs and codepoints, which can be used for further research
Expand Down
6 changes: 3 additions & 3 deletions lib/uniscribe/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

module Uniscribe
VERSION = "1.9.0"
VERSION = "1.10.0"

UNICODE_VERSION = "15.1.0"
EMOJI_VERSION = "15.1"
UNICODE_VERSION = "16.0.0"
EMOJI_VERSION = "16.0"
end
12 changes: 6 additions & 6 deletions uniscribe.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Gem::Specification.new do |gem|
gem.metadata = { "rubygems_mfa_required" => "true" }

gem.required_ruby_version = ">= 2.1"
gem.add_dependency "unicode-name", "~> 1.12"
gem.add_dependency "unicode-sequence_name", "~> 1.13"
gem.add_dependency "unicode-display_width", "~> 2.5"
gem.add_dependency "unicode-emoji", "~> 3.4"
gem.add_dependency "unicode-version", "~> 1.3"
gem.add_dependency "unicode-name", "~> 1.13"
gem.add_dependency "unicode-sequence_name", "~> 1.14"
gem.add_dependency "unicode-display_width", "~> 2.6"
gem.add_dependency "unicode-emoji", "~> 3.5"
gem.add_dependency "unicode-version", "~> 1.4"
gem.add_dependency "symbolify", "~> 1.4"
gem.add_dependency "characteristics", "~> 1.6"
gem.add_dependency "characteristics", "~> 1.7"
gem.add_dependency "paint", ">= 0.9", "< 3.0"
gem.add_dependency "rationalist", "~> 2.0", ">= 2.0.1"
end

0 comments on commit 4903882

Please sign in to comment.