Skip to content

Commit

Permalink
Setup Unicode 15.0 in iOS 16.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
izyumkin committed Mar 28, 2023
1 parent 0277a40 commit 04737f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MCEmojiPicker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MCEmojiPicker'
s.version = '1.1.2'
s.version = '1.1.3'
s.license = 'MIT'
s.summary = 'Emoji picker for iOS like on MacOS'
s.homepage = 'https://github.com/izyumkin/MCEmojiPicker'
Expand Down
4 changes: 3 additions & 1 deletion Sources/MCEmojiPicker/Services/MCUnicodeManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ final class MCUnicodeManager: MCUnicodeManagerProtocol {
return 13.0
case 14.5...15.3:
return 13.1
case 15.4...:
case 15.4...16.3:
return 14.0
case 16.4...:
return 15.0
default:
return 5.0
}
Expand Down

0 comments on commit 04737f7

Please sign in to comment.