Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/feature/scala-2.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
gekomad committed Jun 13, 2019
2 parents 40755da + a6b5b41 commit 04357b2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
language: scala

scala:
- 2.13.0
- 2.12.8
- 2.12.6
- 2.11.12
- 2.10.7

jdk:
- oraclejdk8
- openjdk8

script:
- sbt clean coverage test coverageReport
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Scala regex collection

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

## Using Library

Expand Down
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name := "scala-regex-collection"

version := "0.0.2"
version := "1.0.0"

scalaVersion := "2.12.8"
scalaVersion := "2.13.0"
organization := "com.github.gekomad"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test

crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.6", "2.12.8")
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % Test

crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.6", "2.12.8","2.13.0")

publishTo := sonatypePublishTo.value

2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")

0 comments on commit 04357b2

Please sign in to comment.