Skip to content

Commit

Permalink
Updated dependency version to 0.5.1 and fix mima tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paualarco committed Nov 30, 2020
1 parent 03f0905 commit 5194b78
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sbt.Keys.version

val monixConnectSeries = "0.5.0"
val monixConnectSeries = "0.5.1"

inThisBuild(List(
organization := "io.monix",
Expand Down
2 changes: 1 addition & 1 deletion docs/akka.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Also, in order to perform these conversion it is required to have an implicit in

Add the following dependency to get started:
```scala
libraryDependencies += "io.monix" %% "monix-akka" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-akka" % "0.5.1"
```

## Getting started
Expand Down
2 changes: 1 addition & 1 deletion docs/dynamo.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Therefore, the connector provides three generic methods __single__, __transforme

Add the following dependency to get started:
```scala
libraryDependencies += "io.monix" %% "monix-dynamodb" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-dynamodb" % "0.5.1"
```

## Async Client
Expand Down
2 changes: 1 addition & 1 deletion docs/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ but also to _search_ or _upload_ in a reactive fashion with _Monix Reactive_.
Add the following dependency:

```scala
libraryDependencies += "io.monix" %% "monix-elasticsearch" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-elasticsearch" % "0.5.1"
```

## Client
Expand Down
2 changes: 1 addition & 1 deletion docs/gcs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object will be returned to any _get request_, globally.

Add the following dependency to get started:
```scala
libraryDependencies += "io.monix" %% "monix-gcs" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-gcs" % "0.5.1"
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion docs/hdfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and it is built on top of the the official _apache hadoop_ api.
Add the following dependency to get started:

```scala
libraryDependencies += "io.monix" %% "monix-hdfs" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-hdfs" % "0.5.1"
```

By default the connector uses _Hadoop 3.1.1_. In case you need a different one you can replace it by excluding `org.apache.hadoop` from `monix-hdfs` and add the new one to your library dependencies.
Expand Down
2 changes: 1 addition & 1 deletion docs/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ _MongoDB_ is a _document database_ which means that stores data in _JSON-like do

Add the following dependency to get started:
```scala
libraryDependencies += "io.monix" %% "monix-mongodb" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-mongodb" % "0.5.1"
```

## Database
Expand Down
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ _Monix Connect_ is an initiative to implement stream integrations for [Monix](ht
all of the connectors by adding the following dependency (find and fill your release [version](https://github.com/monix/monix-connect/releases)):

```scala
libraryDependencies += "io.monix" %% "monix-connect" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-connect" % "0.5.1"
```

But you would probably only want to add a specific connector to your library dependencies, see how to do so and how to get started with them in the next sections.
2 changes: 1 addition & 1 deletion docs/parquet.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Therefore, the `monix-parquet` _connector_ basically exposes stream integrations
Add the following dependency:

```scala
libraryDependencies += "io.monix" %% "monix-parquet" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-parquet" % "0.5.1"
```

## Getting started
Expand Down
2 changes: 1 addition & 1 deletion docs/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This connector has been built on top of [lettuce](https://lettuce.io/), the most
Add the following dependency:

```scala
libraryDependencies += "io.monix" %% "monix-redis" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-redis" % "0.5.1"
```

## Getting started
Expand Down
4 changes: 2 additions & 2 deletions docs/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This module exposes a wide range of methods for interacting with S3 _buckets_ an
Add the following dependency in your _build.sbt_:

```scala
libraryDependencies += "io.monix" %% "monix-s3" % "0.5.0"
libraryDependencies += "io.monix" %% "monix-s3" % "0.5.1"
```

## Async Client
Expand Down Expand Up @@ -338,7 +338,7 @@ import monix.eval.Task

val bucket = "my-bucket"
val key = "sample/upload/path/file.txt"
val ob = Observable[Array[Byte]] // preasumably we have a byte array `Obserbable`
val ob = Observable[Array[Byte]] // preasumably we have a byte array `Observable`
val s3: S3

val f = ob.consumeWith(s3.uploadMultipart(bucket, key)).runToFuture
Expand Down

0 comments on commit 5194b78

Please sign in to comment.