Skip to content

Commit b54e7ae

Browse files
committed
Fix #21 Update scala-parser-combinators from 1.0.4 to 1.1.1
1 parent c6107d2 commit b54e7ae

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.11.0:
2+
3+
* Update scala-parser-combinators from 1.0.4 to 1.1.1
4+
https://github.com/xitrum-framework/scaposer/issues/21
5+
16
1.10:
27

38
* Fix bug parsing "Plural-Forms" header in po file

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
organization := "tv.cntt"
22
name := "scaposer"
3-
version := "1.11-SNAPSHOT"
3+
version := "1.11.0-SNAPSHOT"
44

5-
scalaVersion := "2.12.1"
6-
crossScalaVersions := Seq("2.12.1", "2.11.8", "2.10.6")
5+
scalaVersion := "2.12.6"
6+
crossScalaVersions := Seq("2.12.6", "2.11.12", "2.10.7")
77

88
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked")
99
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
@@ -12,10 +12,10 @@ javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
1212
libraryDependencies := {
1313
CrossVersion.partialVersion(scalaVersion.value) match {
1414
case Some((2, scalaMajor)) if scalaMajor >= 11 =>
15-
libraryDependencies.value :+ "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
15+
libraryDependencies.value :+ "org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.1"
1616
case _ =>
1717
libraryDependencies.value
1818
}
1919
}
2020

21-
libraryDependencies += "org.specs2" %% "specs2-core" % "3.8.6" % "test"
21+
libraryDependencies += "org.specs2" %% "specs2-core" % "4.3.3" % "test"

0 commit comments

Comments
 (0)