From 00c805e459c21e8c22974ed06cd8306e247bcb81 Mon Sep 17 00:00:00 2001 From: adamw Date: Mon, 16 Dec 2024 10:05:49 +0100 Subject: [PATCH] Release 0.5.6 --- README.md | 4 ++-- generated-doc/out/index.md | 2 +- generated-doc/out/info/dependency.md | 4 ++-- generated-doc/out/integrations/kafka.md | 2 +- generated-doc/out/integrations/mdc-logback.md | 2 +- generated-doc/out/streaming/flows.md | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 05927cc8..c3cbe9fa 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ the project! To test Ox, use the following dependency, using either [sbt](https://www.scala-sbt.org): ```scala -"com.softwaremill.ox" %% "core" % "0.5.5" +"com.softwaremill.ox" %% "core" % "0.5.6" ``` Or [scala-cli](https://scala-cli.virtuslab.org): ```scala -//> using dep "com.softwaremill.ox::core:0.5.5" +//> using dep "com.softwaremill.ox::core:0.5.6" ``` Documentation is available at [https://ox.softwaremill.com](https://ox.softwaremill.com), ScalaDocs can be browsed at [https://javadoc.io](https://www.javadoc.io/doc/com.softwaremill.ox). diff --git a/generated-doc/out/index.md b/generated-doc/out/index.md index edca44cf..8bc623c2 100644 --- a/generated-doc/out/index.md +++ b/generated-doc/out/index.md @@ -2,7 +2,7 @@ Safe direct-style concurrency and resiliency for Scala on the JVM. Requires JDK 21 & Scala 3. -To start using Ox, add the `com.softwaremill.ox::core:0.5.5` [dependency](info/dependency.md) to your project. +To start using Ox, add the `com.softwaremill.ox::core:0.5.6` [dependency](info/dependency.md) to your project. Then, take a look at the tour of Ox, or follow one of the topics listed in the menu to get to know Ox's API! In addition to this documentation, ScalaDocs can be browsed at [https://javadoc.io](https://www.javadoc.io/doc/com.softwaremill.ox). diff --git a/generated-doc/out/info/dependency.md b/generated-doc/out/info/dependency.md index 8bd4479a..5c13f373 100644 --- a/generated-doc/out/info/dependency.md +++ b/generated-doc/out/info/dependency.md @@ -4,10 +4,10 @@ To use ox core in your project, add: ```scala // sbt dependency -"com.softwaremill.ox" %% "core" % "0.5.5" +"com.softwaremill.ox" %% "core" % "0.5.6" // scala-cli dependency -//> using dep com.softwaremill.ox::core:0.5.5 +//> using dep com.softwaremill.ox::core:0.5.6 ``` Ox core depends only on the Java [jox](https://github.com/softwaremill/jox) project, where channels are implemented. There are no other direct or transitive dependencies. diff --git a/generated-doc/out/integrations/kafka.md b/generated-doc/out/integrations/kafka.md index 923e2e2b..c333134d 100644 --- a/generated-doc/out/integrations/kafka.md +++ b/generated-doc/out/integrations/kafka.md @@ -3,7 +3,7 @@ Dependency: ```scala -"com.softwaremill.ox" %% "kafka" % "0.5.5" +"com.softwaremill.ox" %% "kafka" % "0.5.6" ``` `Flow`s which read from a Kafka topic, mapping stages and drains which publish to Kafka topics are available through diff --git a/generated-doc/out/integrations/mdc-logback.md b/generated-doc/out/integrations/mdc-logback.md index 1ad351bc..1f350679 100644 --- a/generated-doc/out/integrations/mdc-logback.md +++ b/generated-doc/out/integrations/mdc-logback.md @@ -3,7 +3,7 @@ Dependency: ```scala -"com.softwaremill.ox" %% "mdc-logback" % "0.5.5" +"com.softwaremill.ox" %% "mdc-logback" % "0.5.6" ``` Ox provides support for setting inheritable MDC (mapped diagnostic context) values, when using the [Logback](https://logback.qos.ch) diff --git a/generated-doc/out/streaming/flows.md b/generated-doc/out/streaming/flows.md index 6fd095b7..c228f407 100644 --- a/generated-doc/out/streaming/flows.md +++ b/generated-doc/out/streaming/flows.md @@ -171,7 +171,7 @@ To obtain a `org.reactivestreams.Publisher` instance, you'll need to add the fol bring the `toReactiveStreamsPublisher` method into scope: ```scala -// sbt dependency: "com.softwaremill.ox" %% "flow-reactive-streams" % "0.5.5" +// sbt dependency: "com.softwaremill.ox" %% "flow-reactive-streams" % "0.5.6" import ox.supervised import ox.flow.Flow