Skip to content

Commit 3b74e18

Browse files
authored
Merge pull request #7 from JoeCordingley/scala213
upped versions and added scala 2.13
2 parents 7c20173 + 17057cf commit 3b74e18

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
language: scala
22
scala:
33
- 2.11.12
4-
- 2.12.4
4+
- 2.12.10
5+
- 2.13.1
6+
57

68
notifications:
7-
email: false
9+
email: false

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A library for creating [scalacheck](https://www.scalacheck.org/) generators from regular expressions
88

9-
Cross-built for Scala 2.11/2.12
9+
Cross-built for Scala 2.11/2.12/2.13
1010

1111
##### Installation
1212

build.sbt

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ lazy val root = (project in file("."))
77
homepage := Some(url("https://github.com/wolfendale/scalacheck-gen-regexp")),
88
bintrayVcsUrl := Some("https://github.com/wolfendale/scalacheck-gen-regexp"),
99
version := "0.1.1",
10-
crossScalaVersions := Seq("2.11.12", "2.12.4"),
10+
crossScalaVersions := Seq("2.11.12", "2.12.10", "2.13.1"),
1111
libraryDependencies ++= Seq(
12-
"org.scalacheck" %% "scalacheck" % "1.13.5" % "provided",
13-
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6",
14-
"org.scalactic" %% "scalactic" % "3.0.4" % "test",
15-
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
12+
"org.scalacheck" %% "scalacheck" % "1.14.2" % "provided",
13+
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
14+
"org.scalactic" %% "scalactic" % "3.0.8" % "test",
15+
"org.scalatest" %% "scalatest" % "3.0.8" % "test"
1616
)
1717
)
1818

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.0.4
1+
sbt.version = 1.3.3

0 commit comments

Comments
 (0)