Skip to content

Commit

Permalink
Preparing for release - update version etc. (debasishg#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
debasishg authored Oct 29, 2021
1 parent 616b436 commit 31be53b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add to `build.sbt`

```scala
libraryDependencies ++= Seq(
"net.debasishg" %% "redisclient" % "3.31"
"net.debasishg" %% "redisclient" % "3.41"
)
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val redisClient = (project in file(".")).settings(coreSettings : _*)

lazy val commonSettings: Seq[Setting[_]] = Seq(
organization := "net.debasishg",
version := "3.40",
version := "3.41",
scalaVersion := "2.13.6",
crossScalaVersions := Seq("2.12.14", "2.11.12", "2.10.7"),

Expand Down
1 change: 1 addition & 0 deletions src/main/scala/com/redis/RedisClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ class RedisClient(override val host: String, override val port: Int,
* Redis pipelining API without the transaction semantics. The implementation has a non-blocking
* semantics and returns a <tt>List</tt> of <tt>Promise</tt>. The caller may use <tt>Future.firstCompletedOf</tt> to get the
* first completed task before all tasks have been completed. However the commands are submitted one by one and NOT in batch.
* If you want to send the commands in batch mode, use the `batchedPipeline` method.
* If an exception is raised in executing any of the commands, then the corresponding <tt>Promise</tt> holds
* the exception. Here's a sample usage:
* <pre>
Expand Down

0 comments on commit 31be53b

Please sign in to comment.