From c285934bbea7a552e72768b91a739d311bea1dc9 Mon Sep 17 00:00:00 2001 From: Akiomi Kamakura Date: Tue, 5 Jan 2021 02:29:24 +0900 Subject: [PATCH] Bump version to 1.3.0 --- README.md | 3 ++- build.sbt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e14b4a..85eed3e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add the following lines to your `build.sbt`. ```scala resolvers += Resolver.jcenterRepo -libraryDependencies += "com.github.akiomik" %% "cats-nio-file" % "1.2.0" +libraryDependencies += "com.github.akiomik" %% "cats-nio-file" % "1.3.0" ``` ## All releases @@ -26,6 +26,7 @@ cats-nio-file supports some different versions of cats-effect. | 1.0.1 | 2.0.x | 2.12.x/2.13.x | | 1.1.0 | 2.1.x | 2.12.x/2.13.x | | 1.2.0 | 2.2.x | 2.12.x/2.13.x | +| 1.3.0 | 2.3.x | 2.12.x/2.13.x | ## Usage diff --git a/build.sbt b/build.sbt index 9f4d2c4..d15b642 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ lazy val v2_13 = "2.13.4" crossScalaVersions := Seq(v2_13, v2_12) scalaVersion := crossScalaVersions.value.head -version := "1.2.0" +version := "1.3.0" organization := "com.github.akiomik" scmInfo := Some(ScmInfo(url("https://github.com/akiomik/cats-nio-file"), s"git@github.com:akiomik/cats-nio-file.git")) licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))