Skip to content

Commit

Permalink
v3.2.0 (2022-12-03)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Dec 3, 2022
1 parent 77469d1 commit 860306e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,35 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v3.2.0 / 2022 Dec 3

```clojure
[com.taoensso/carmine "3.2.0"]
```

> This is a major feature + maintenance release. It should be **non-breaking**.
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
#### Fixes since `v3.1.0`

* Fix warning of parse var replacements (`parse-long`, `parse-double`)

#### New since `v3.1.0`

* [#201] [#224] [#266] Improve `wcar` documentation, alias pool constructor in main ns
* [#251] [#257] [#270] Add support for username (ACL) in AUTH (@lsevero @sumeet14)
* Update to latest commands.json (from 2022-09-22)
* [#259] [#261] Ring middleware: add `:extend-on-read?` option (@svdo)
* [Message queue] Print extra debug info on invalid handler status

#### Other improvements since `v3.1.0`

* [#264] Remove unnecessary reflection in Tundra (@frwdrik)
* Stop using deprecated Encore vars
* [#271] Refactor tests, fix flakey results
* Update dependencies
* Work [underway](https://github.com/users/ptaoussanis/projects/2) on Carmine v4, which'll introduce support for RESP3, Redis Sentinel, Redis Cluster, and more.


## v3.1.0 / 2020 Nov 24

```clojure
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -4,7 +4,7 @@
**[CHANGELOG][]** | [API][] | current [Break Version][]:

```clojure
[com.taoensso/carmine "3.1.0"] ; See CHANGELOG for details
[com.taoensso/carmine "3.2.0"] ; See CHANGELOG for details
```

> See [here][backers] if to help support my open-source work, thanks! - [Peter Taoussanis][Taoensso.com]
Expand Down Expand Up @@ -33,8 +33,8 @@ An major upcoming (v4) release will include support for RESP3, Redis Sentinel, R
Add the necessary dependency to your project:

```clojure
Leiningen: [com.taoensso/carmine "3.1.0"] ; or
deps.edn: com.taoensso/carmine {:mvn/version "3.1.0"}
Leiningen: [com.taoensso/carmine "3.2.0"] ; or
deps.edn: com.taoensso/carmine {:mvn/version "3.2.0"}
```

And setup your namespace imports:
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/carmine.clj
Expand Up @@ -15,7 +15,7 @@
(connections :as conns)
(commands :as commands)]))

(enc/assert-min-encore-version [3 31 0])
(enc/assert-min-encore-version [3 39 0])

;;;; Connections

Expand Down

0 comments on commit 860306e

Please sign in to comment.