From 68d5f26100a7ac907f9a4977cc8a9969622fcaa9 Mon Sep 17 00:00:00 2001 From: geirolz Date: Wed, 10 Jul 2024 08:49:34 +0200 Subject: [PATCH] Fix doc --- .github/workflows/cicd.yml | 1 - .github/workflows/codacy.yml | 2 -- .mergify.yml | 6 +++--- README.md | 6 +++--- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 4da495f..0d3893f 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -8,7 +8,6 @@ on: types: [ created ] pull_request: branches: - - main - 0.x-9.x # jobs diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index d9de7ff..f0ddc96 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -16,12 +16,10 @@ name: Codacy Security Scan on: push: branches: - - main - 0.x-9.x pull_request: # The branches below must be a subset of the branches above branches: - - main - 0.x-9.x schedule: - cron: '15 19 * * 1' diff --git a/.mergify.yml b/.mergify.yml index b45b4fb..99b5deb 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -6,7 +6,7 @@ pull_request_rules: - check-success=codecov/project - check-success=build (Scala2_13) - check-success=build (Scala3_3) - - base=main + - base=0.x-9.x - label!=work-in-progress actions: merge: @@ -16,7 +16,7 @@ pull_request_rules: - author=scala-steward-geirolz[bot] - check-success=build (Scala2_13) - check-success=build (Scala3_3) - - base=main + - base=0.x-9.x actions: merge: method: rebase @@ -25,7 +25,7 @@ pull_request_rules: - author=dependabot[bot] - check-success=build (Scala2_13) - check-success=build (Scala3_3) - - base=main + - base=0.x-9.x actions: merge: method: rebase \ No newline at end of file diff --git a/README.md b/README.md index 8bc66e6..5fa14b4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://github.com/geirolz/fly4s/actions/workflows/cicd.yml/badge.svg)](https://github.com/geirolz/fly4s/actions) [![codecov](https://img.shields.io/codecov/c/github/geirolz/fly4s)](https://codecov.io/gh/geirolz/fly4s) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/db3274b55e0c4031803afb45f58d4413)](https://www.codacy.com/manual/david.geirola/fly4s?utm_source=github.com&utm_medium=referral&utm_content=geirolz/fly4s&utm_campaign=Badge_Grade) -[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.github.geirolz/fly4s-core_2.13?server=https%3A%2F%2Foss.sonatype.org)](https://mvnrepository.com/artifact/com.github.geirolz/fly4s-core) +[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.github.geirolz/fly4s_2.13?server=https%3A%2F%2Foss.sonatype.org)](https://mvnrepository.com/artifact/com.github.geirolz/fly4s) [![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org) [![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/geirolz/fly4s&style=flat)](https://mergify.io) [![GitHub license](https://img.shields.io/github/license/geirolz/fly4s)](https://github.com/geirolz/fly4s/blob/main/LICENSE) @@ -48,7 +48,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-core" % "0.0.20" +libraryDependencies += "com.github.geirolz" %% "fly4s" % "0.0.20" ``` ### Migrations files @@ -139,7 +139,7 @@ val fly4sRes: Resource[IO, Fly4s[IO]] = Fly4s.make[IO]( ) ) // fly4sRes: Resource[IO, Fly4s[IO]] = Allocate( -// resource = cats.effect.kernel.Resource$$$Lambda$13201/0x00000008034be2e8@5c96bc35 +// resource = cats.effect.kernel.Resource$$$Lambda/0x0000000704122cc0@7c888df7 // ) ```