diff --git a/ChangeLog.md b/ChangeLog.md index 7d6354c..b71a31b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,8 +1,33 @@ -## Changes between Langohr 5.4.0 and 5.5.0 (unreleased) +## Changes between Langohr 5.4.0 and 5.5.0 (October 22) + +### HTTP 2 Client + +Contributed by @jimpil. + +GitHub issue: [#119](https://github.com/michaelklishin/langohr/pull/119) + +### Support for More (Java Client's) ConnectionFactory Options + +Contributd by @vincentjames501. + +GitHub issue: [#122](https://github.com/michaelklishin/langohr/pull/122) + +### Default Consumer Had an Incorrect Signature of handleRecoveryOk + +Contributed by @jimpil. + +GitHub issue: [#116](https://github.com/michaelklishin/langohr/issues/116) + +### Correctly Pick TLS Port (5671) When Only :ssl is Passed in Connection Options + +Contributed by @vincentjames501. + +GitHub issue: [#114](https://github.com/michaelklishin/langohr/issues/114) ### RabbitMQ Java Client Upgrade -RabbitMQ Java client dependency has been updated to `5.16.x`. +RabbitMQ Java client dependency has been updated to `5.22.x`. + ## Changes between Langohr 5.3.0 and 5.4.0 (April 24, 2022) diff --git a/project.clj b/project.clj index 65ee081..34a6c46 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.novemberain/langohr "6.0.0-SNAPSHOT" +(defproject com.novemberain/langohr "5.5.0" :description "A Clojure client for RabbitMQ that embraces the underlying protocol. Built on top of the RabbitMQ Java client" :min-lein-version "2.5.1" :license {:name "Eclipse Public License"} diff --git a/src/clojure/langohr/core.clj b/src/clojure/langohr/core.clj index 859d2af..3107dcd 100644 --- a/src/clojure/langohr/core.clj +++ b/src/clojure/langohr/core.clj @@ -305,8 +305,8 @@ "information" "See http://clojurerabbitmq.info/" "platform" (platform-string) "capabilities" (get (AMQConnection/defaultClientProperties) "capabilities") - "copyright" "Copyright (C) 2011-2020 Michael S. Klishin, Alex Petrov" - "version" "5.3.0-SNAPSHOT"}) + "copyright" "Copyright (C) 2011-2024 Michael S. Klishin, Alex Petrov" + "version" "5.5.0"}) (defn- auth-mechanism->sasl-config [{:keys [authentication-mechanism]}]