Skip to content

Commit 31be53b

Browse files
authored
Preparing for release - update version etc. (#284)
1 parent 616b436 commit 31be53b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Add to `build.sbt`
3030

3131
```scala
3232
libraryDependencies ++= Seq(
33-
"net.debasishg" %% "redisclient" % "3.31"
33+
"net.debasishg" %% "redisclient" % "3.41"
3434
)
3535
```
3636

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lazy val redisClient = (project in file(".")).settings(coreSettings : _*)
44

55
lazy val commonSettings: Seq[Setting[_]] = Seq(
66
organization := "net.debasishg",
7-
version := "3.40",
7+
version := "3.41",
88
scalaVersion := "2.13.6",
99
crossScalaVersions := Seq("2.12.14", "2.11.12", "2.10.7"),
1010

src/main/scala/com/redis/RedisClient.scala

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

0 commit comments

Comments
 (0)