Skip to content

Commit

Permalink
Merge branch 'master' into autoTopologyRecovery
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz authored Sep 3, 2024
2 parents 1a5c9d8 + 9b25937 commit 8ea83f7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: coursier/setup-action@v1

- name: Starting up RabbitMQ
run: docker-compose up -d
run: docker compose up -d

- name: Cache Coursier dependencies
uses: actions/cache@v4
Expand All @@ -37,7 +37,7 @@ jobs:
run: sbt -J-Xms4G -J-Xmx4G buildFs2Rabbit

- name: Shutting down RabbitMQ
run: docker-compose down
run: docker compose down

migration-check:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.2"
version = "3.8.3"
style = default
maxColumn = 120
align.preset = most
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ Check the [official guide](https://fs2-rabbit.profunktor.dev/guide.html) for upd

## Running tests locally

Start a `RabbitMQ` instance using `docker-compose` (recommended):
Start a `RabbitMQ` instance using `docker compose` (recommended):

```bash
> docker-compose up
> docker compose up
> sbt +test
```

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Dependencies {
val fs2 = "3.10.2"
val circe = "0.14.9"
val amqpClient = "5.21.0"
val logback = "1.5.6"
val logback = "1.5.7"
val monix = "3.3.0"
val zio = "1.0.18"
val zioCats = "3.2.9.1"
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.4")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")

0 comments on commit 8ea83f7

Please sign in to comment.