summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-30 04:23:27 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-30 04:23:27 +0000
commitbd38e0c4f2a065ccf824ad41db0091e3290aa111 (patch)
treee3a98a0704adadfdc42f969b15f1bf78c7428685
parente95e524782360babafc9d3754bbbda4f266bea98 (diff)
tool/downloader.rb: changed Unicode data download location
from latest Unicode version to Unicode 7.0.0. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--tool/downloader.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e000a2c70e..b1644208af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 30 13:23:23 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
+
+ * tool/downloader.rb: changed Unicode data download location
+ from latest Unicode version to Unicode 7.0.0.
+
Thu Oct 30 11:16:13 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_insnhelper.c (vm_callee_setup_arg{_complex,}): try conversion
diff --git a/tool/downloader.rb b/tool/downloader.rb
index 49a1de326c..27c706d9ae 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -17,7 +17,7 @@ class Downloader
class Unicode < self
def self.download(name, *rest)
- super("http://www.unicode.org/Public/UCD/latest/ucd/#{name}", name, *rest)
+ super("http://www.unicode.org/Public/7.0.0/ucd/#{name}", name, *rest)
end
end