Skip to content

Commit 374f2fd

Browse files
cosmo0920edsiper
authored andcommitted
Prepare to upgrade Unicode 15.0
Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 7c159e2 commit 374f2fd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tool/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
UNICODE_VERSION = 12.1.0
2-
EMOJI_VERSION = 12.0
1+
UNICODE_VERSION = 15.0.0
2+
EMOJI_VERSION = 15.0.0
33

44
PROP_FILES = \
55
$(UNICODE_VERSION)/Blocks.txt \

tool/case-folding.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def initialize(mapping_directory)
232232
@version = nil
233233
IO.foreach(File.join(mapping_directory, 'UnicodeData.txt'), mode: "rb") do |line|
234234
next if line =~ /^</
235-
code, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11, upper, lower, title = line.chomp.split ';'
235+
code, __1,__2,__3,__4,__5,__6,__7,__8,__9,__10,__11, upper, lower, title = line.chomp.split ';'
236236
unless upper and lower and title and (upper+lower+title)==''
237237
@mappings[code] = MapItem.new(code, upper, lower, title)
238238
end

tool/download-ucd.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ for i in $files; do
2626
done | xargs wget
2727
mv GraphemeBreakProperty.txt auxiliary
2828
for i in $emoji_files; do
29-
echo http://www.unicode.org/Public/emoji/${EMOJI_VERSION}/$i
29+
echo http://www.unicode.org/Public/${EMOJI_VERSION}/ucd/emoji/$i
3030
done | xargs wget

tool/update-doc.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

44
# Usage:
@@ -10,7 +10,7 @@
1010
import re
1111
import datetime
1212

13-
onig_ver = "6.2.1"
13+
onig_ver = "6.2.2"
1414
ucddir = "."
1515

1616
def print_list(arr, title):

0 commit comments

Comments
 (0)