Skip to content

Commit

Permalink
Release 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru committed May 11, 2016
1 parent 0a877ec commit c8819b4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ These are the people maintaining this project that you can annoy:
## Usage From SBT

```scala
dependencies += "com.bionicspirit" %% "shade" % "1.7.2"
dependencies += "com.bionicspirit" %% "shade" % "1.7.3"
```

### Initializing the Memcached Client
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name := "shade"

version := "1.7.2"
version := "1.7.3"

organization := "com.bionicspirit"

scalaVersion := "2.11.7"
scalaVersion := "2.11.8"

crossScalaVersions := Seq("2.10.6", "2.11.7")
crossScalaVersions := Seq("2.10.6", "2.11.8")

compileOrder in ThisBuild := CompileOrder.JavaThenScala

Expand Down Expand Up @@ -61,7 +61,7 @@ resolvers ++= Seq(
libraryDependencies ++= Seq(
"net.spy" % "spymemcached" % "2.12.0",
"org.slf4j" % "slf4j-api" % "1.7.13",
"org.monifu" %% "monifu-core" % "1.0",
"org.monifu" %% "monifu-core" % "1.2",
"ch.qos.logback" % "logback-classic" % "1.1.3" % Test,
"org.scalatest" %% "scalatest" % "2.2.4" % Test,
"org.scalacheck" %% "scalacheck" % "1.12.5" % Test
Expand Down
11 changes: 10 additions & 1 deletion release-notes/1.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,13 @@ Integrated several contributions:

- add Array[Byte] codec
- allow enabling low-level client optimisation (collapse multiple sequential get ops)
- send expiration time as 0L when expiration duration is infinity (comply with Memcached expectations)
- send expiration time as 0L when expiration duration is infinity (comply with Memcached expectations)

## Version 1.7.3 - May 11, 2016

- bump SBT version to 0.13.11
- bump Scala version to 2.11.8
- bump Monifu version to 1.2
- add support for Double and Float by default
- add implicitNotFound message on Codec
- enable configuration of hash algorithm

0 comments on commit c8819b4

Please sign in to comment.