Skip to content

Commit 9cd2408

Browse files
committed
v1.8.0
1 parent d30657f commit 9cd2408

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v1.8.0 / 2015 September 26
4+
5+
> This is a non-breaking feature release
6+
7+
* **New**: add sanitization multimethod to strip empty values [@jeffh #67]
8+
* **New**: temp hack/workaround to get opt-out `attr-multi-vs` behaviour [#63]
9+
* **New**: support proxy username & password [@tokomakoma123 #68]
10+
* **New**: db-client*: add :keep-alive? option [@kirankulkarni #70]
11+
* **Fix**: don't remove falsey attr vals [#67]
12+
* **Docs**: fix `put-item` docstring [#64, #65]
13+
14+
```clojure
15+
[com.taoensso/faraday "1.8.0"]
16+
```
17+
18+
319
## v1.7.1 / 2015 June 4
420

521
> This is a non-breaking maintenance elease

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
22

33
```clojure
4-
[com.taoensso/faraday "1.7.1"] ; Dev, see CHANGELOG for details
4+
[com.taoensso/faraday "1.8.0"] ; Dev, see CHANGELOG for details
55
```
66

77
# 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
3232
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
3333

3434
```clojure
35-
[com.taoensso/faraday "1.7.1"] ; project.clj
35+
[com.taoensso/faraday "1.8.0"] ; project.clj
3636
(ns my-app (:require [taoensso.faraday :as far])) ; ns
3737
```
3838

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/faraday "1.7.1"
1+
(defproject com.taoensso/faraday "1.8.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure DynamoDB client"
44
:url "https://github.com/ptaoussanis/faraday"

0 commit comments

Comments
 (0)