Skip to content

Commit b14e1f8

Browse files
committed
Release 1.10
1 parent 77e9558 commit b14e1f8

File tree

4 files changed

+13
-19
lines changed

4 files changed

+13
-19
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.10:
2+
3+
* Fix bug parsing "Plural-Forms" header in po file
4+
https://github.com/xitrum-framework/scaposer/issues/18
5+
16
1.9:
27

38
* Evaluate plural form

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,6 @@ build.sbt example:
118118
119119
::
120120
121-
libraryDependencies += "tv.cntt" %% "scaposer" % "1.9"
121+
libraryDependencies += "tv.cntt" %% "scaposer" % "1.10"
122122
123123
Scaposer is used in `Xitrum web framework <https://github.com/xitrum-framework/xitrum>`_.

build.sbt

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
organization := "tv.cntt"
22
name := "scaposer"
3-
version := "1.10-SNAPSHOT"
3+
version := "1.11-SNAPSHOT"
44

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

88
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked")
9+
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
910

10-
// http://www.scala-sbt.org/release/docs/Detailed-Topics/Java-Sources
11-
// Avoid problem when this lib is built with Java 7 but the projects that use it
12-
// are run with Java 6
13-
// java.lang.UnsupportedClassVersionError: Unsupported major.minor version 51.0
14-
javacOptions ++= Seq("-source", "1.6", "-target", "1.6")
15-
16-
// Scala 2.11 core does not include scala.util.parsing.combinator
11+
// Scala 2.11+ core does not include scala.util.parsing.combinator
1712
libraryDependencies := {
1813
CrossVersion.partialVersion(scalaVersion.value) match {
1914
case Some((2, scalaMajor)) if scalaMajor >= 11 =>
@@ -23,10 +18,4 @@ libraryDependencies := {
2318
}
2419
}
2520

26-
libraryDependencies += "org.specs2" %% "specs2-core" % "3.8.3" % "test"
27-
28-
//------------------------------------------------------------------------------
29-
30-
// Skip API doc generation to speedup "publish-local" while developing.
31-
// Comment out this line when publishing to Sonatype.
32-
publishArtifact in (Compile, packageDoc) := false
21+
libraryDependencies += "org.specs2" %% "specs2-core" % "3.8.6" % "test"

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.12
1+
sbt.version=0.13.13

0 commit comments

Comments
 (0)