update to rhino (js.jar) release 1.7.6

This commit is contained in:
kares 2015-04-29 12:07:08 +02:00
parent e80a253a7a
commit dc8a7396d7
4 changed files with 7 additions and 2 deletions

View File

@ -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:

BIN
jar/rhino-1.7.6.jar Normal file

Binary file not shown.

Binary file not shown.

View File

@ -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