From befd570d2b317bcece8380b4efad88999cac0309 Mon Sep 17 00:00:00 2001 From: Matt Dziuban Date: Thu, 21 Mar 2024 12:58:18 -0400 Subject: [PATCH] v6.1.1 --- README.md | 14 +++++++------- build.sbt | 2 +- docs/README.md | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 83d24a1..0722246 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To use it, include in build.sbt ```scala resolvers += Resolver.bintrayRepo("bondlink", "composefree") -libraryDependencies += "bondlink" %% "composefree" % "2.0.0" +libraryDependencies += "bondlink" %% "composefree" % "6.1.1" ``` Basic use is a pared down version of the manual process, with the following high level steps: @@ -87,7 +87,7 @@ val prog1: compose.Composed[Unit] = } yield () // prog1: Free[[_$12 >: Nothing <: Any] => RecNode[Program, _$12], Unit] = FlatMapped( // c = Suspend(a = EitherK(run = Right(value = pure(a = "Hello world!")))), -// f = repl.MdocSession$MdocApp$$Lambda$19282/0x0000000803d2c220@6be28823 +// f = repl.MdocSession$MdocApp$$Lambda/0x0000007003e00218@7f2657c7 // ) prog1.runWith(interp) @@ -122,15 +122,15 @@ val prog2 = for { // c = FlatMapped( // c = FlatMapped( // c = Suspend(a = EitherK(run = Right(value = pure(a = "Hello")))), -// f = cats.free.Free$$Lambda$19289/0x0000000803d46618@2566365a +// f = cats.free.Free$$Lambda/0x0000007003e1e000@12fab5f3 // ), -// f = cats.StackSafeMonad$$Lambda$19291/0x0000000803d4c000@5bff9b38 +// f = cats.StackSafeMonad$$Lambda/0x0000007003e1f668@4838c135 // ), -// f = cats.free.Free$$Lambda$19289/0x0000000803d46618@42f0d822 +// f = cats.free.Free$$Lambda/0x0000007003e1e000@3217ad19 // ), -// f = cats.StackSafeMonad$$Lambda$19291/0x0000000803d4c000@1e9269db +// f = cats.StackSafeMonad$$Lambda/0x0000007003e1f668@3c3c656e // ), -// f = repl.MdocSession$MdocApp$$Lambda$19293/0x0000000803d483d0@ad258b5 +// f = repl.MdocSession$MdocApp$$Lambda/0x0000007003e1d0a8@7b2e1a37 // ) prog2.runWith(interp) diff --git a/build.sbt b/build.sbt index 8eedf87..55fb656 100644 --- a/build.sbt +++ b/build.sbt @@ -29,7 +29,7 @@ def forScalaV[A](scalaVersion: String)(_213: => A, _3: => A): A = } lazy val commonSettings = Seq( - version := "6.1.0", + version := "6.1.1", organization := "bondlink", scalaVersion := scala3, crossScalaVersions := scalaVersions, diff --git a/docs/README.md b/docs/README.md index 064574b..6aa2675 100644 --- a/docs/README.md +++ b/docs/README.md @@ -10,7 +10,7 @@ To use it, include in build.sbt ```scala resolvers += Resolver.bintrayRepo("bondlink", "composefree") -libraryDependencies += "bondlink" %% "composefree" % "2.0.0" +libraryDependencies += "bondlink" %% "composefree" % "6.1.1" ``` Basic use is a pared down version of the manual process, with the following high level steps: