Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Mar 24, 2015
1 parent 58a5e73 commit 7339a7c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v1.6.0 / 2015 Mar 24

> **BREAKING** release unless upgrading from _v1.6.0-beta1_.
* *BREAK*: `update-item` no longer treats `false` as a special value to denote attribute exists in `:expected`. Attribute existances is now tested for with the `:exists` and `:not-exists` keywords [@mantree].
* **New**: Boolean, Null, Map and List types now supported [@mantree]
* **New**: `update-item` now accepts the comparison operators in `:expected` [@mantree]
* **Fix**: batch operations weren't returning consumed capacity [@johnchapin #49]
* **Fix**: default AWS creds typo preventing federated IAM roles from working, etc. [@shinep #53]
* **Docs**: a number of typo fixes + clarifications [@philippkueng @rmfbarker @sheelc @madeye-matt #50 #52 #55 #58]

```clojure
[com.taoensso/faraday "1.6.0"]
```

## v1.6.0-beta1 / 2015 Jan 12

* **BREAKING**: `update-item` no longer treats `false` as a special value to denote attribute exists in `:expected`. Attribute existances is now tested for with the `:exists` and `:not-exists` keywords (@mantree).
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:

```clojure
[com.taoensso/faraday "1.5.0"] ; Stable
[com.taoensso/faraday "1.6.0-beta1"] ; Dev, see CHANGELOG for details
[com.taoensso/faraday "1.6.0"] ; See CHANGELOG for details
```

# Faraday, a Clojure DynamoDB client
Expand All @@ -27,7 +26,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.5.0"] ; project.clj
[com.taoensso/faraday "1.6.0"] ; project.clj
(ns my-app (:require [taoensso.faraday :as far])) ; ns
```

Expand Down Expand Up @@ -154,4 +153,4 @@ Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ
[Cider]: https://github.com/clojure-emacs/cider
[CDS]: http://clojure-doc.org/
[ClojureWerkz]: http://clojurewerkz.org/
[Eclipse Public License]: https://raw2.github.com/ptaoussanis/faraday/master/LICENSE
[Eclipse Public License]: https://raw2.github.com/ptaoussanis/faraday/master/LICENSE
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.6.0-beta1"
(defproject com.taoensso/faraday "1.6.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure DynamoDB client"
:url "https://github.com/ptaoussanis/faraday"
Expand Down

0 comments on commit 7339a7c

Please sign in to comment.