Skip to content

Commit

Permalink
v1.0.0-RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Nov 8, 2013
1 parent df05e2b commit 203e2d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## v0.12.0 → v1.0.0-RC1
## v0.12.0 → v1.0.0-RC3
* REVERT AWS Java SDK dependency bump, seems to be causing some issues - will investigate further later.
* Add docstring examples for `scan`, `query` condition format.
* Make `scan`, `query` condition format more forgiving: now accepts single vals like `[:eq "Steve]`.
* Creds can now be an empty map (or nil) to use credentials provider chain (amanas).


## v0.11.0 → v0.12.0
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](http://ptaoussanis.github.io/faraday/)** | **[CHANGELOG](https://github.com/ptaoussanis/faraday/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:

```clojure
[com.taoensso/faraday "1.0.0-RC2"] ; Late-stage alpha, API still subject to change
[com.taoensso/faraday "1.0.0-RC3"]
```

# Faraday, a Clojure DynamoDB client
Expand All @@ -26,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](http://leiningen.org/) `project.clj` and `require` the library in your ns:

```clojure
[com.taoensso/faraday "1.0.0-RC2"] ; project.clj
[com.taoensso/faraday "1.0.0-RC3"] ; 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.0.0-RC2"
(defproject com.taoensso/faraday "1.0.0-RC3"
:description "Clojure DynamoDB client"
:url "https://github.com/ptaoussanis/faraday"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit 203e2d3

Please sign in to comment.