Skip to content

Commit

Permalink
Release 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentj committed Mar 9, 2017
1 parent 531fd4a commit 6faf179
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = '0.10'
# The full version, including alpha/beta/rc tags.
release = '0.10.2'
release = '0.10.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/release-notes-0.10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Release Notes of SlimerJS 0.10
version 0.10.3
==============

Not released yet
SlimerJS 0.10.3 has been released on March 9, 2017.

- Fix support of IPV6 notation in the ``--proxy`` and ``--webdriver`` command line parameters.
- Compatibility with Firefox 51 and 52
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "slimerjs",
"version": "0.10.3-pre",
"version": "0.10.3",
"description": "A scriptable browser like PhantomJS, based on Firefox",
"bin": {
"slimerjs": "./src/slimerjs-node"
Expand Down
4 changes: 2 additions & 2 deletions src/application.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[App]
Vendor=Innophi
Name=SlimerJS
Version=0.10.3-pre
BuildID=20161127
Version=0.10.3
BuildID=20170309
ID[email protected]
Copyright=Copyright 2012-2017 Laurent Jouanneau & Innophi

Expand Down
2 changes: 1 addition & 1 deletion test/launch-initial-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if ("slimer" in this) {
assertExists(slimer.version, "has slimer.version object? ");
assertEquals("0", slimer.version.major, "slimer has the good major version");
assertEquals("10", slimer.version.minor, "slimer has the good minor version");
assertEquals("1", slimer.version.patch, "slimer has the good patch version");
assertEquals("3", slimer.version.patch, "slimer has the good patch version");
}
else
console.warn("==> No slimer object!")
Expand Down
2 changes: 1 addition & 1 deletion test/test-environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ if ("slimer" in this) {
it("should have a right version", function(){
expect(slimer.version.major).toEqual(0);
expect(slimer.version.minor).toEqual(10);
expect(slimer.version.patch).toEqual(1);
expect(slimer.version.patch).toEqual(3);
});

});
Expand Down
10 changes: 5 additions & 5 deletions website/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,19 @@ <h1>Download</h1>

<section id="lightweight">
<div class="page-header">
<h1 class="install">SlimerJS 0.10.2</h1>
<h1 class="install">SlimerJS 0.10.3</h1>
<div><strong>Official &amp; supported package</strong></div>
</div>
<p class="lead">It is compatible with Firefox from 38.0 to 50.0.</p>
<p class="lead">It is compatible with Firefox from 38.0 to 52.0.</p>

<div class="row-fluid">
<div class="span5">
<h2>Zip package</h2>
<p>Official zip package, from download.slimerjs.org</p>
<p><a class="btn"
href="http://download.slimerjs.org/releases/0.10.2/slimerjs-0.10.2.zip">Download</a>
href="http://download.slimerjs.org/releases/0.10.3/slimerjs-0.10.3.zip">Download</a>
(about 1.2 MB)<br/>
<a href="http://download.slimerjs.org/releases/0.10.2/slimerjs-0.10.2.zip.asc">checksum</a></p>
<a href="http://download.slimerjs.org/releases/0.10.3/slimerjs-0.10.3.zip.asc">checksum</a></p>
<p>Note: see <a href="checksum.html">the page about checksum</a> to know how to verify the downloaded file.</p>
</div>
<div class="span5">
Expand All @@ -149,7 +149,7 @@ <h2>Npm</h2>
<div class="span5">
<h2>Firefox</h2>
<p>The Famous Web Browser. <span class="slm">SlimerJS</span> needs only its
core engine to be executed. Prefered version: 38.0 to 50.0.</p>
core engine to be executed. Prefered version: 38.0 to 52.0.</p>
<p><a class="btn" href="http://getfirefox.com">Download</a></p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h1><img src="assets/img/glouton-homeOmbre.png"/> <span>Slimer</span>JS</h1>

<p id="download">
<a href="download.html" class="btn"><span class="download">Download SlimerJS</span><br/>
<span class="sublabel">All operating systems - Version 0.10.2</span></a> <br>
<span class="sublabel">All operating systems - Version 0.10.3</span></a> <br>
<strong class="newfeature">Compatible <a href="http://casperjs.org/">with CasperJS 1.1</a>!!</strong><br>
<a class="relnote" href="https://docs.slimerjs.org/current/release-notes-0.10.html">Release notes</a>
</p>
Expand Down

0 comments on commit 6faf179

Please sign in to comment.