Skip to content

Commit

Permalink
Update release notes and readme for 1.7.7.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Brail committed Feb 1, 2016
1 parent 920e125 commit 7d1c630
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Rhino is licensed under the [MPL 2.0](./LICENSE.txt).
<tr><td><a href="https://github.com/mozilla/rhino/releases/tag/Rhino1_7R5_RELEASE">Rhino 1.7R5</a></td><td>January 29, 2015</td></tr>
<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>
</table>

[Release Notes](./RELEASE-NOTES.md) for recent releases.
Expand Down Expand Up @@ -93,7 +94,7 @@ mavenReleaseRepo=

Rhino can run as a stand-alone interpreter from the command line:

java -jar build/libs/rhino-1.7.7.jar
java -jar buildGradle/libs/rhino-1.7.7.1.jar
Rhino 1.7.7 2015 05 03
js> print('Hello, World!');
Hello, World!
Expand Down
18 changes: 18 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Rhino 1.7.7.1
## February 1, 2016

This release fixes a few critical bugs that were affecting code in the field:

* Improve String.prototype.repeat to work more efficiently and to not overflow
* Fix CallSite.isNative() and isTopLevel() so that they do not throw fatal errors
* Replace the implementation of the "YearFromTime" internal method for the Date class to avoid large CPU loops

Specific Changes:

* Formatting issue with SourceReader.
* Fix CallSite.isNative() and isTopLevel() to not throw.
* Make String.prototype.repeat not overflow for large values, and change code style a bit.
* Add tests from 1.7.7.
* Add Gradle code from 1.7.7.
* Replace YearFromTime with code from jsdate.cpp to avoid long CPU loops.

# Rhino 1.7.7
## June 17, 2015

Expand Down

0 comments on commit 7d1c630

Please sign in to comment.