Skip to content

Commit 9c26170

Browse files
committed
v1.9.0
1 parent 749aead commit 9c26170

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3-
## v1.9.0-beta1 / 2016 Jan 24
3+
## v1.9.0 / 2016 Jul 24
4+
5+
```clojure
6+
[com.taoensso/faraday "1.9.0"]
7+
```
48

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

22-
```clojure
23-
[com.taoensso/faraday "1.9.0-RC1"]
24-
```
25-
2626
#### MIGRATION INSTRUCTIONS
2727

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

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

32-
3332
## v1.8.0 / 2015 September 26
3433

3534
> This is a non-breaking feature release

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
**[CHANGELOG]** | [API] | current [Break Version]:
55

66
```clojure
7-
[com.taoensso/faraday "1.8.0"] ; Stable
8-
[com.taoensso/faraday "1.9.0-beta1"] ; Dev, see CHANGELOG
7+
[com.taoensso/faraday "1.9.0"] ; BREAKING, see CHANGELOG for details
98
```
109

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

5453
```clojure
55-
[com.taoensso/faraday "1.8.0"]
54+
[com.taoensso/faraday "1.9.0"]
5655
```
5756

5857
And setup your namespace imports:

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.9.0-beta1"
1+
(defproject com.taoensso/faraday "1.9.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)