commit 2440677adf84c94c4723030f9898bfc47bf67965
Author:     Laslo Hunhold <[email protected]>
AuthorDate: Sat Oct 10 19:04:05 2020 +0200
Commit:     Laslo Hunhold <[email protected]>
CommitDate: Sat Oct 10 19:04:05 2020 +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 <[email protected]>

diff --git a/Makefile b/Makefile
index 8b53263..33c163f 100644
--- 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

Reply via email to