Skip to content

Commit

Permalink
v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jul 24, 2016
1 parent 749aead commit 9c26170
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v1.9.0-beta1 / 2016 Jan 24
## v1.9.0 / 2016 Jul 24

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

> This is a major feature release with **BREAKING CHANGES** (see **Migration** section for details).
> Big thanks to @ricardojmendez for most of the work for this release!
Expand All @@ -19,17 +23,12 @@
* **Change**: implementation details now marked as private
* **Fix**: `remove-empty-attr-vals` vs blank strings [@crough #72]

```clojure
[com.taoensso/faraday "1.9.0-RC1"]
```

#### MIGRATION INSTRUCTIONS

**[1]**: `(update-item <client-opts> <table> <prim-kvs> <update-map> <opts>)` -> `(update-item <client-opts> <table> <prim-kvs> {:update-map <update-map> <other-opts>})`

**[2]**: `(update-table <client-opts> <table> <throughput> <opts>)` -> `(update-table <client-opts> <table> {:through-put <throughput> <other-opts>})`


## v1.8.0 / 2015 September 26

> This is a non-breaking feature release
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/faraday "1.8.0"] ; Stable
[com.taoensso/faraday "1.9.0-beta1"] ; Dev, see CHANGELOG
[com.taoensso/faraday "1.9.0"] ; BREAKING, see CHANGELOG for details
```

> Please consider helping to [support my continued open-source Clojure/Script work]?
Expand Down Expand Up @@ -52,7 +51,7 @@ Your link here? | **PR's welcome!**
Add the necessary dependency to your project:

```clojure
[com.taoensso/faraday "1.8.0"]
[com.taoensso/faraday "1.9.0"]
```

And setup your namespace imports:
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.9.0-beta1"
(defproject com.taoensso/faraday "1.9.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure DynamoDB client"
:url "https://github.com/ptaoussanis/faraday"
Expand Down

0 comments on commit 9c26170

Please sign in to comment.