Skip to content

Commit 04357b2

Browse files
committed
Merge remote-tracking branch 'remotes/origin/feature/scala-2.13'
2 parents 40755da + a6b5b41 commit 04357b2

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
language: scala
22

33
scala:
4+
- 2.13.0
45
- 2.12.8
56
- 2.12.6
67
- 2.11.12
78
- 2.10.7
89

910
jdk:
10-
- oraclejdk8
11+
- openjdk8
1112

1213
script:
1314
- sbt clean coverage test coverageReport

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Scala regex collection
66

77
Scala-regex-collection is a pure scala regex collection
88
## Add the library to your project
9-
`libraryDependencies += "com.github.gekomad" %% "scala-regex-collection" % "0.0.2"`
9+
`libraryDependencies += "com.github.gekomad" %% "scala-regex-collection" % "1.0.0"`
1010

1111
## Using Library
1212

build.sbt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name := "scala-regex-collection"
22

3-
version := "0.0.2"
3+
version := "1.0.0"
44

5-
scalaVersion := "2.12.8"
5+
scalaVersion := "2.13.0"
66
organization := "com.github.gekomad"
7-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test
87

9-
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.6", "2.12.8")
8+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % Test
9+
10+
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.6", "2.12.8","2.13.0")
1011

1112
publishTo := sonatypePublishTo.value
1213

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
22
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
3-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
3+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")

0 commit comments

Comments
 (0)