Skip to content

Commit 562b2ba

Browse files
committed
Add support for Scala 2.13
1 parent 94d4bbf commit 562b2ba

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ Or a snapshot from a [snapshot repository](https://bintray.com/2m/snapshots/ciri
2626
resolvers += Resolver.bintrayRepo("2m", "snapshots")
2727
```
2828

29+
| version | scala | ciris |
30+
|----------|-------|------------|
31+
| 0.1 | 2.12 | 0.12.1 |
32+
| 0.2 | 2.13 | 0.13.0-RC1 |
33+
2934
## Example usage
3035

3136
This library provides configuration sources as well as decoders from [`ConfigValue`](https://lightbend.github.io/config/latest/api/?com/typesafe/config/ConfigValue.html) values.

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
organization := "lt.dvim.ciris-hocon"
22
name := "ciris-hocon"
33

4-
scalaVersion := "2.12.10"
4+
scalaVersion := "2.13.1"
55

66
libraryDependencies ++= Seq(
7-
"is.cir" %% "ciris-core" % "0.12.1",
7+
"is.cir" %% "ciris-core" % "0.13.0-RC1",
88
"com.typesafe" % "config" % "1.4.0",
99
"org.scalatest" %% "scalatest" % "3.1.0" % "test"
1010
)

0 commit comments

Comments
 (0)