From 6eceb94d4dab4d8c19d25b72888cc363cb2849fb Mon Sep 17 00:00:00 2001 From: geirolz Date: Tue, 9 Jul 2024 17:24:55 +0200 Subject: [PATCH] Update doc --- README.md | 12 ++++++------ docs/README.md | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e6d16d..51d5f2a 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,10 @@ A lightweight, simple and functional wrapper for Flyway using cats-effect. ### Compatibility matrix -| **Fly4s** | **Flyway** | **Branch** | -|:--------------------------------------------------------------------:|:----------:|:--------------------------------------------------------:| -| [0.x](https://github.com/geirolz/fly4s/releases?q=0.&expanded=false) | 9.x | [0.x-9.x](https://github.com/geirolz/fly4s/tree/0.x-9.x) | -| [1.x](https://github.com/geirolz/fly4s/releases?q=1.&expanded=false) | 10.x | [main](https://github.com/geirolz/fly4s/tree/main) | +| **Fly4s** | **Flyway** | **Branch** | +|:---------------------------------------------------------------------:|:----------:|:--------------------------------------------------------:| +| [0.x](https://github.com/geirolz/fly4s/releases?q=v0.&expanded=false) | 9.x | [0.x-9.x](https://github.com/geirolz/fly4s/tree/0.x-9.x) | +| [1.x](https://github.com/geirolz/fly4s/releases?q=v1.&expanded=false) | 10.x | [main](https://github.com/geirolz/fly4s/tree/main) | The most famous library to handle database migrations in Java is for sure Flyway. @@ -57,7 +57,7 @@ So, add the dependency in your `build.sbt` file. Fly4s depends on Flyway, so we'll have access to Flyway as well ```sbt -libraryDependencies += "com.github.geirolz" %% "fly4s" % "1.0.0" +libraryDependencies += "com.github.geirolz" %% "fly4s" % "1.0.5" ``` Remember to also import the specific database module from Flyway @@ -152,7 +152,7 @@ val fly4sRes: Resource[IO, Fly4s[IO]] = Fly4s.make[IO]( ) ) // fly4sRes: Resource[IO, Fly4s[IO]] = Allocate( -// resource = cats.effect.kernel.Resource$$$Lambda$11849/0x0000000802ef5540@3f5b0394 +// resource = cats.effect.kernel.Resource$$$Lambda/0x00000007030bf0c0@1950092a // ) ``` diff --git a/docs/README.md b/docs/README.md index 991bbc6..1fc06b3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -15,10 +15,10 @@ A lightweight, simple and functional wrapper for Flyway using cats-effect. ### Compatibility matrix -| **Fly4s** | **Flyway** | **Branch** | -|:--------------------------------------------------------------------:|:----------:|:--------------------------------------------------------:| -| [0.x](https://github.com/geirolz/fly4s/releases?q=0.&expanded=false) | 9.x | [0.x-9.x](https://github.com/geirolz/fly4s/tree/0.x-9.x) | -| [1.x](https://github.com/geirolz/fly4s/releases?q=1.&expanded=false) | 10.x | [main](https://github.com/geirolz/fly4s/tree/main) | +| **Fly4s** | **Flyway** | **Branch** | +|:---------------------------------------------------------------------:|:----------:|:--------------------------------------------------------:| +| [0.x](https://github.com/geirolz/fly4s/releases?q=v0.&expanded=false) | 9.x | [0.x-9.x](https://github.com/geirolz/fly4s/tree/0.x-9.x) | +| [1.x](https://github.com/geirolz/fly4s/releases?q=v1.&expanded=false) | 10.x | [main](https://github.com/geirolz/fly4s/tree/main) | The most famous library to handle database migrations in Java is for sure Flyway.