Skip to content

Commit

Permalink
prepare release 2.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jan 28, 2020
1 parent 2d6ec1c commit cb28621
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.37.0-SNAPSHOT</version>
<version>2.37.0</version>
<name>HtmlUnit</name>
<organization>
<name>Gargoyle Software Inc.</name>
Expand All @@ -23,7 +23,7 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<htmlunitdriver.version>2.37.0-SNAPSHOT</htmlunitdriver.version>
<htmlunitdriver.version>2.37.0</htmlunitdriver.version>
<htmlunitcssparser.version>1.5.0</htmlunitcssparser.version>
<htmlunitneko.version>2.37.0</htmlunitneko.version>
<htmlunitcorejs.version>2.37.0</htmlunitcorejs.version>
Expand Down
4 changes: 2 additions & 2 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</properties>

<body>
<release version="2.37.0" date="xxxx, 2020" description="Bugfixes, CHROME 79, FF52 removed, FF68 added">
<release version="2.37.0" date="January 28, 2020" description="Bugfixes, CHROME 79, FF52 removed, FF68 added">
<action type="fix" dev="rbri">
Security: prevent Rhinos access to Java resources; e.g. call java methods.
</action>
Expand All @@ -31,7 +31,7 @@
Resync core-js with rhino trunk (2019-11-25). This includes some improvements to iterable processing.
</action>
<action type="fix" dev="rbri" issue="#79">
The entity processing was broken if an '&' was in front of a tag like </div>&X</div>.
The entity processing was broken if an '&amp;' was in front of a tag like &lt;/div&gt;&amp;X&lt;/div&gt;.
</action>
<action type="fix" dev="rbri" issue="#114">
Promise.all() and Promise.race() are now able to work with iterables instead of only supporting
Expand Down
8 changes: 4 additions & 4 deletions src/site/xdoc/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
<section name="Where to find...">
<p>
<dl>
<dt>Latest release <date>August 24, 2019</date></dt>
<dt>Latest release <date>January 28, 2020</date></dt>
<dd>
<p><a href="https://sourceforge.net/projects/htmlunit/files/htmlunit/2.36.0/">version 2.36.0</a></p>
<p><a href="https://sourceforge.net/projects/htmlunit/files/htmlunit/2.37.0/">version 2.37.0</a></p>
</dd>

<dt>Source code</dt>
Expand All @@ -71,7 +71,7 @@

<dt>Latest build / CI server</dt>
<dd>
<p><a href="http://167.86.92.69/job/HtmlUnit/">Jenkins build server</a></p>
<p><a href="https://jenkins.wetator.org/job/HtmlUnit/">Jenkins build server</a></p>
</dd>
</dl>
</p>
Expand Down Expand Up @@ -167,7 +167,7 @@
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.36.0</version>
<version>2.37.0</version>
</dependency>]]></source>
</p>
</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,13 +364,13 @@ TestedBrowser[] value() default {
String[] IE() default { EMPTY_DEFAULT };

/**
* Alerts for Firefox 60. If not defined, {@link #FF()} is used.
* Alerts for Firefox 60.
* @return the alerts
*/
String[] FF60() default { EMPTY_DEFAULT };

/**
* Alerts for Firefox 68. If not defined, {@link #FF()} is used.
* Alerts for Firefox 68.
* @return the alerts
*/
String[] FF68() default { EMPTY_DEFAULT };
Expand Down

0 comments on commit cb28621

Please sign in to comment.