From 9cd2408ae47dd96301f90db4d65c34fbab981763 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Sat, 26 Sep 2015 10:31:42 +0700 Subject: [PATCH] v1.8.0 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 4 ++-- project.clj | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17e8a0e..2c12e2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v1.8.0 / 2015 September 26 + +> This is a non-breaking feature release + +* **New**: add sanitization multimethod to strip empty values [@jeffh #67] +* **New**: temp hack/workaround to get opt-out `attr-multi-vs` behaviour [#63] +* **New**: support proxy username & password [@tokomakoma123 #68] +* **New**: db-client*: add :keep-alive? option [@kirankulkarni #70] +* **Fix**: don't remove falsey attr vals [#67] +* **Docs**: fix `put-item` docstring [#64, #65] + +```clojure +[com.taoensso/faraday "1.8.0"] +``` + + ## v1.7.1 / 2015 June 4 > This is a non-breaking maintenance elease diff --git a/README.md b/README.md index b150a36..59f0ae5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: ```clojure -[com.taoensso/faraday "1.7.1"] ; Dev, see CHANGELOG for details +[com.taoensso/faraday "1.8.0"] ; Dev, see CHANGELOG for details ``` # Faraday, a Clojure DynamoDB client @@ -32,7 +32,7 @@ DynamoDB's done a fantastic job of hiding (in a good way) a lot of the complexit Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns: ```clojure -[com.taoensso/faraday "1.7.1"] ; project.clj +[com.taoensso/faraday "1.8.0"] ; project.clj (ns my-app (:require [taoensso.faraday :as far])) ; ns ``` diff --git a/project.clj b/project.clj index a130aaf..11e6511 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/faraday "1.7.1" +(defproject com.taoensso/faraday "1.8.0" :author "Peter Taoussanis " :description "Clojure DynamoDB client" :url "https://github.com/ptaoussanis/faraday"