Skip to content

Commit 8aeed14

Browse files
authored
Update scalapb 0.10 (#34)
- Drop Scala 2.11 compatibility - Update Scalapb to 0.10.2
1 parent 346de03 commit 8aeed14

File tree

4 files changed

+10
-31
lines changed

4 files changed

+10
-31
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ EntityIterator.fromPbf(inputStream).count(_.osmModel == OSMTypes.Node)
3030
```
3131
resolvers += "osm4scala repo" at "http://dl.bintray.com/angelcervera/maven"
3232
```
33-
33+
## Selecting the right Versions
34+
| osm4scala | Scala | Scalapb |
35+
|:--------:|:------:|:-------:|
36+
| 1.0.4 | 2.12, 2.13 | 0.10.2 |
37+
| 1.0.3 | 2.11, 2.12, 2.13 | 0.9.7 |
38+
| 1.0.1 | 2.11, 2.12 | 0.5.47 |
39+
| 1.0 | 2.10, 2.11 | 0.5.47 |
40+
3441
## Performance
3542
The performance of the first version looks really good. You can find a resume in the section [Concurrent examples comparision](#concurrent-examples-comparision)
3643

build.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ lazy val akkaVersion = "2.5.31"
1212
// Releases versions
1313
lazy val scala213 = "2.13.2"
1414
lazy val scala212 = "2.12.11"
15-
lazy val scala211 = "2.11.12"
16-
lazy val scalaVersions = List(scala213, scala212, scala211)
15+
lazy val scalaVersions = List(scala213, scala212)
1716

1817
lazy val commonSettings = Seq(
1918
crossScalaVersions := scalaVersions,

project/scalapb.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.31")
22

3-
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.9.7"
3+
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.10.2"

project/scalapb.sbt.scala12and13

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)