From 1db775de4a8ce7810562343e9a81b7ea0406a684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Akif=20Tu=CC=88tu=CC=88ncu=CC=88?= Date: Mon, 17 Feb 2020 17:21:07 +0300 Subject: [PATCH] Setting version to 1.1.1 --- README.md | 14 +++++++------- e-scala/README.md | 6 +++--- e-zio/README.md | 8 ++++---- version.sbt | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index afebb8d..aaa61d6 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ It consists of different modules for different needs. You can find details, inst | Latest Version of e | Java Version | Scala Versions | | ------------------- | --------------------- | ----------------------- | -| 1.1.1-SNAPSHOT | 1.8 | 2.12, 2.13 | +| 1.1.1 | 1.8 | 2.12, 2.13 | ## Table of Contents @@ -42,10 +42,10 @@ It consists of different modules for different needs. You can find details, inst ```scala libraryDependencies ++= Seq( // Scala modules - "dev.akif" %% "[MODULE]" % "1.1.1-SNAPSHOT", + "dev.akif" %% "[MODULE]" % "1.1.1", // Java/Kotlin modules - "dev.akif" % "[MODULE]" % "1.1.1-SNAPSHOT" + "dev.akif" % "[MODULE]" % "1.1.1" ) ``` * If you use Maven, add following to your `pom.xml` for each module you want to use @@ -55,14 +55,14 @@ libraryDependencies ++= Seq( dev.akif [MODULE]_[SCALA_VERSION] - 1.1.1-SNAPSHOT + 1.1.1 dev.akif [MODULE] - 1.1.1-SNAPSHOT + 1.1.1 ``` @@ -71,10 +71,10 @@ libraryDependencies ++= Seq( ```javascript dependencies { // Scala modules - implementation('dev.akif:[MODULE]_[SCALA_VERSION]:1.1.1-SNAPSHOT'), + implementation('dev.akif:[MODULE]_[SCALA_VERSION]:1.1.1'), // Java/Kotlin modules - implementation('dev.akif:[MODULE]:1.1.1-SNAPSHOT') + implementation('dev.akif:[MODULE]:1.1.1') } ``` diff --git a/e-scala/README.md b/e-scala/README.md index f24db82..7ac439c 100644 --- a/e-scala/README.md +++ b/e-scala/README.md @@ -447,7 +447,7 @@ import e.scala.implicits._ /*******************************/ val encoder: Encoder[String] = JsonStringEncoder -// encoder: Encoder[String] = e.scala.JsonStringEncoder$@5ef0f02a +// encoder: Encoder[String] = e.scala.JsonStringEncoder$@1c0f73b1 encoder.encode(E()) // res75: String = "{}" @@ -464,7 +464,7 @@ val csv: Encoder[String] = { e: E => |"${e.name}","${e.message}","${e.code}" """.stripMargin } -// csv: Encoder[String] = repl.Session$App$$anonfun$159@5dc1e88f +// csv: Encoder[String] = repl.Session$App$$anonfun$159@7a50eca csv.encode(E()) // res77: String = """"name","message","code" @@ -519,7 +519,7 @@ val csvDecoder: Decoder[String] = new Decoder[String] { private def unescape(s: String): String = if (s.startsWith("\"") && s.endsWith("\"")) s.drop(1).dropRight(1) else s } -// csvDecoder: Decoder[String] = repl.Session$App$$anon$1@4fa654f1 +// csvDecoder: Decoder[String] = repl.Session$App$$anon$1@1540a76 val result1 = csvDecoder.decode("foo") // result1: DecodingResult[E] = {"name":"decoding-failure","message":"Input did not have 2 rows!"} diff --git a/e-zio/README.md b/e-zio/README.md index 4c26ac2..03eff71 100644 --- a/e-zio/README.md +++ b/e-zio/README.md @@ -18,7 +18,7 @@ import zio.internal.PlatformLive /****************/ val runtime1 = zio.Runtime((), PlatformLive.Default) -// runtime1: zio.Runtime[Unit] = zio.Runtime$$anon$1@65456d14 +// runtime1: zio.Runtime[Unit] = zio.Runtime$$anon$1@66bac563 def divide(a: Int, b: Int): MaybeZ[Int] = if (b == 0) { @@ -33,7 +33,7 @@ runtime1.unsafeRunSync(divide(4, 0)) // Fail( // E("divide-by-zero", "Cannot divide by 0!", 0, None, Map("input" -> "4")) // ), -// ZTrace(Id(1581948566345L, 0L), List(), List(), None) +// ZTrace(Id(1581949266141L, 0L), List(), List(), None) // ) // ) @@ -50,7 +50,7 @@ val divider: Divider = (a: Int, b: Int) => divide(a, b) // divider: (Int, Int) => MaybeZ[Int] = val runtime2: zio.Runtime[Divider] = zio.Runtime(divider, PlatformLive.Default) -// runtime2: zio.Runtime[(Int, Int) => MaybeZ[Int]] = zio.Runtime$$anon$1@562643fc +// runtime2: zio.Runtime[(Int, Int) => MaybeZ[Int]] = zio.Runtime$$anon$1@75c33e29 def divideWithEnvironment(a: Int, b: Int): MaybeZR[Divider, Int] = for { @@ -67,7 +67,7 @@ runtime2.unsafeRunSync(divideWithEnvironment(4, 0)) // E("divide-by-zero", "Cannot divide by 0!", 0, None, Map("input" -> "4")) // ), // ZTrace( -// Id(1581948566391L, 2L), +// Id(1581949266191L, 2L), // List( // SourceLocation( // "README.md", diff --git a/version.sbt b/version.sbt index ab92045..61ca1d8 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "1.1.1-SNAPSHOT" +version in ThisBuild := "1.1.1"