Skip to content

Commit

Permalink
Use futures instead of parallel collections for parallel execution
Browse files Browse the repository at this point in the history
Update Scala from 2.12.6 to 2.12.7
  • Loading branch information
bjuric committed Oct 6, 2018
1 parent e9fd67f commit d5f2076
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: scala
scala:
- 2.12.6
- 2.12.7
jdk:
- oraclejdk8
before_script:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2.26.2
======
October 6, 2018
- Update Gwen core from v2.16.1. to v[2.16.2](https://github.com/gwen-interpreter/gwen/releases/tag/v2.16.2)
- Use futures instead of parallel collections to ensure that all cores are utilised at all times during parallel
execution.
- Update Scala from version 2.12.6 to 2.12.7

2.26.1
======
October 2, 2018
Expand Down
4 changes: 2 additions & 2 deletions LICENSE-THIRDPARTY
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ org.apache.httpcomponents httpcore | 4.4.9 | [Apac
org.checkerframework checker-compat-qual | 2.0.0 | [MIT License](http://opensource.org/licenses/MIT)
org.codehaus.mojo animal-sniffer-annotations | 1.14 | [MIT License](https://opensource.org/licenses/mit-license.php)
org.ow2.asm asm | 5.0.4 | [BSD License](http://asm.objectweb.org/license.html)
org.scala-lang scala-library | 2.12.6 | [BSD 3-Clause](https://www.scala-lang.org/license.html)
org.scala-lang scala-reflect | 2.12.6 | [BSD 3-Clause](https://www.scala-lang.org/license.html)
org.scala-lang scala-library | 2.12.7 | [BSD 3-Clause](https://www.scala-lang.org/license.html)
org.scala-lang scala-reflect | 2.12.7 | [BSD 3-Clause](https://www.scala-lang.org/license.html)
org.seleniumhq.selenium selenium-api | 3.14.0 | [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt)
org.seleniumhq.selenium selenium-chrome-driver | 3.14.0 | [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt)
org.seleniumhq.selenium selenium-firefox-driver | 3.14.0 | [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lazy val gwenWebSettings = Seq(
organization := "org.gweninterpreter",
organizationHomepage := Some(url("http://gweninterpreter.org")),
startYear := Some(2014),
scalaVersion := "2.12.6",
scalaVersion := "2.12.7",
crossPaths := false,
trapExit := false,
scalacOptions ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
enablePlugins(GitVersioning)

git.baseVersion := "2.26.1"
git.baseVersion := "2.26.2"

git.useGitDescribe := true

Expand Down

0 comments on commit d5f2076

Please sign in to comment.