Skip to content

Commit

Permalink
v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Sep 26, 2015
1 parent d30657f commit 9cd2408
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/faraday "1.7.1"
(defproject com.taoensso/faraday "1.8.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure DynamoDB client"
:url "https://github.com/ptaoussanis/faraday"
Expand Down

0 comments on commit 9cd2408

Please sign in to comment.