commit 2440677adf84c94c4723030f9898bfc47bf67965 parent 51eca9eff65def13d1370e32dad2988731d38e7d Author: Laslo Hunhold <dev@frign.de> Date: Sat, 10 Oct 2020 19:04:05 +0200 Explicitly specify version 13.0.0 in data-URLs It's a bit problematic to specify "latest" given they could change the grapheme break algorithm with version 14.0.0, once it's released. To prevent this, we explicitly state the version, and only change this to 14.0.0 as soon as we are sure that all tests pass. Signed-off-by: Laslo Hunhold <dev@frign.de> Diffstat:
M | Makefile | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -6,9 +6,9 @@ include config.mk BIN = src/test REQ = src/boundary src/codepoint src/grapheme -GBP_URL = https://www.unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakProperty.txt -EMO_URL = https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt -GBT_URL = https://www.unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakTest.txt +GBP_URL = https://www.unicode.org/Public/13.0.0/ucd/auxiliary/GraphemeBreakProperty.txt +EMO_URL = https://www.unicode.org/Public/13.0.0/ucd/emoji/emoji-data.txt +GBT_URL = https://www.unicode.org/Public/13.0.0/ucd/auxiliary/GraphemeBreakTest.txt GBP = data/gbp.txt EMO = data/emo.txt GBT = data/gbt.txt