зеркало из https://github.com/mozilla/rhino.git
Update version number to 1.7.7.2.
This commit is contained in:
Родитель
c3d4583ffa
Коммит
290b34ba73
22
README.md
22
README.md
|
@ -15,6 +15,7 @@ Rhino is licensed under the [MPL 2.0](./LICENSE.txt).
|
|||
<tr><td><a href="https://github.com/mozilla/rhino/releases/tag/Rhino1_7_6_RELEASE">Rhino 1.7.6</a></td><td>April 15, 2015</td></tr>
|
||||
<tr><td><a href="https://github.com/mozilla/rhino/releases/tag/Rhino1_7_7_RELEASE">Rhino 1.7.7</a></td><td>June 17, 2015</td></tr>
|
||||
<tr><td><a href="https://github.com/mozilla/rhino/releases/tag/Rhino1_7_7_1_RELEASE">Rhino 1.7.7.1</a></td><td>February 2, 2016</td></tr>
|
||||
<tr><td><a href="https://github.com/mozilla/rhino/releases/tag/Rhino1_7_7_2_RELEASE">Rhino 1.7.7.2</a></td><td>August 24, 2017</td></tr>
|
||||
</table>
|
||||
|
||||
[Release Notes](./RELEASE-NOTES.md) for recent releases.
|
||||
|
@ -38,23 +39,6 @@ More resources if you get stuck:
|
|||
|
||||
## Building
|
||||
|
||||
### Status of "master" branch
|
||||
|
||||
<table>
|
||||
<tr><td><b>Java 6</b></td><td>
|
||||
<a href="http://ci.apigee.io/job/Mozilla%20Rhino%20Java%206">
|
||||
<img src="http://ci.apigee.io/buildStatus/icon?job=Mozilla%20Rhino%20Java%206"/>
|
||||
</a></td></tr>
|
||||
<tr><td><b>Java 7</b></td><td>
|
||||
<a href="http://ci.apigee.io/job/Mozilla%20Rhino">
|
||||
<img src="http://ci.apigee.io/buildStatus/icon?job=Mozilla%20Rhino"/>
|
||||
</a></td></tr>
|
||||
<tr><td><b>Java 8</b></td><td>
|
||||
<a href="http://ci.apigee.io/job/Mozilla%20Rhino%20Java%208">
|
||||
<img src="http://ci.apigee.io/buildStatus/icon?job=Mozilla%20Rhino%20Java%208"/>
|
||||
</a></td></tr>
|
||||
</table>
|
||||
|
||||
### How to Build
|
||||
|
||||
Rhino builds with `Gradle`. Here are some useful tasks:
|
||||
|
@ -94,8 +78,8 @@ mavenReleaseRepo=
|
|||
|
||||
Rhino can run as a stand-alone interpreter from the command line:
|
||||
```
|
||||
java -jar buildGradle/libs/rhino-1.7.7.1.jar
|
||||
Rhino 1.7.7 2015 05 03
|
||||
java -jar buildGradle/libs/rhino-1.7.7.2.jar
|
||||
Rhino 1.7.7.2 2017 08 24
|
||||
js> print('Hello, World!');
|
||||
Hello, World!
|
||||
js>
|
||||
|
|
|
@ -1,3 +1,28 @@
|
|||
# Rhino 1.7.7.2
|
||||
## February 1, 2016
|
||||
|
||||
This release contains fixes for a few important bugs that have caught Rhino users out in the
|
||||
field.
|
||||
|
||||
* Do not throw a Java exception from array.prototype.sort() no matter how weird the user-supplied
|
||||
comparator function is. This is a major difference between JavaScript and Java and has caused
|
||||
us to avoid using "Arrays.sort" on JavaScript arrays.
|
||||
* Fix incorrect offsets in the "DataView" class.
|
||||
|
||||
It also includes several other fixes:
|
||||
|
||||
* Always append a column number to V8-style stack traces. (Unfortunately it is always "0".)
|
||||
* Support Object.is and Object.assign.
|
||||
* Make the Symbol implementation match the spec (for VERSION_ES6 and up only).
|
||||
* Avoid throwing internal Java exceptions for certain native objects in "toJSON".
|
||||
* Allow subclassing of ContinuationPending.
|
||||
* For VERSION_ES6 and up, sort properties in the spec-defined order (int property names
|
||||
first).
|
||||
* Fix stack overflow in string concatenation.
|
||||
* Improve performance of ConsString.toString
|
||||
|
||||
The next release is likely to be 1.7.8.
|
||||
|
||||
# Rhino 1.7.7.1
|
||||
## February 1, 2016
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
|
||||
name: rhino
|
||||
Name: Rhino
|
||||
version: 1.7.8-SNAPSHOT
|
||||
version: 1.7.7.2
|
||||
# See Context#getImplementationVersion() for format of this!
|
||||
implementation.version: Rhino 1.7.8-SNAPSHOT ${implementation.date}
|
||||
implementation.version: Rhino 1.7.7.2 ${implementation.date}
|
||||
|
||||
build.dir: build
|
||||
rhino.jar: js.jar
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#Sun, 26 Apr 2015 10:43:55 +0300
|
||||
rootProject.name=rhino
|
||||
group=org.mozilla
|
||||
version=1.7.8-SNAPSHOT
|
||||
version=1.7.7.2
|
||||
buildDir=buildGradle
|
||||
mavenSnapshotRepo=https://oss.sonatype.org/content/repositories/snapshots
|
||||
mavenReleaseRepo=https://oss.sonatype.org/service/local/staging/deploy/maven
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<groupId>org.mozilla</groupId>
|
||||
<artifactId>rhino</artifactId>
|
||||
<name>Mozilla Rhino</name>
|
||||
<version>1.7.8-SNAPSHOT</version>
|
||||
<version>1.7.7.1</version>
|
||||
|
||||
<packaging>jar</packaging>
|
||||
<description>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Main-Class: org.mozilla.javascript.tools.shell.Main
|
||||
Implementation-Version: 1.7.8-SNAPSHOT
|
||||
Implementation-Title: Mozilla Rhino 1.7.8
|
||||
Implementation-Version: 1.7.7.2
|
||||
Implementation-Title: Mozilla Rhino 1.7.7.2
|
||||
Implementation-Vendor: Mozilla Foundation
|
||||
Implementation-URL: http://www.mozilla.org/rhino
|
||||
|
|
Загрузка…
Ссылка в новой задаче