diff --git a/History.md b/History.md index b7f4846..b1754f0 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,8 @@ +## jar-1.7.6 2015-04-29 + +* updated to Mozilla's Rhino 1.7R5 release from 2015-04-15, notes: + https://github.com/mozilla/rhino/releases/tag/Rhino1_7_6_RELEASE + ## jar-1.7.5 2015-04-29 * updated to Mozilla's Rhino 1.7R5 release from 2015-01-29, notes: diff --git a/jar/rhino-1.7.6.jar b/jar/rhino-1.7.6.jar new file mode 100644 index 0000000..e824613 Binary files /dev/null and b/jar/rhino-1.7.6.jar differ diff --git a/jar/rhino-1.7R5.jar b/jar/rhino-1.7R5.jar deleted file mode 100644 index b9dba37..0000000 Binary files a/jar/rhino-1.7R5.jar and /dev/null differ diff --git a/jar/rhino/jar_path.rb b/jar/rhino/jar_path.rb index a643b12..16f2172 100644 --- a/jar/rhino/jar_path.rb +++ b/jar/rhino/jar_path.rb @@ -1,5 +1,5 @@ module Rhino - JAR_VERSION = '1.7.5'; version = JAR_VERSION.split('.') - jar_file = "rhino-#{version[0]}.#{version[1]}R#{version[2]}.jar" + JAR_VERSION = '1.7.6'; version = JAR_VERSION.split('.') + jar_file = "rhino-#{version[0]}.#{version[1]}.#{version[2]}.jar" JAR_PATH = File.expand_path("../#{jar_file}", File.dirname(__FILE__)) end