diff --git a/CHANGELOG.md b/CHANGELOG.md index 7868aed5c..8dd88123f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [v1.2.5](https://github.com/ably/ably-ruby/tree/v1.2.5) + +This contains an important fix for a TLS certificate validation bug which prevented the library from being able to use Realtime fallback hosts. + +[Full changelog](https://github.com/ably/ably-ruby/compare/v1.2.4...v1.2.5) + +**Fixed bugs:** + +- Fix server certificate validation for HTTP in Realtime [\#397](https://github.com/ably/ably-ruby/pull/397) + ## [v1.2.4](https://github.com/ably/ably-ruby/tree/v1.2.4) [Full Changelog](https://github.com/ably/ably-ruby/compare/v1.2.3...v1.2.4) diff --git a/lib/ably/version.rb b/lib/ably/version.rb index e12034750..c0265f5c9 100644 --- a/lib/ably/version.rb +++ b/lib/ably/version.rb @@ -1,5 +1,5 @@ module Ably - VERSION = '1.2.4' + VERSION = '1.2.5' PROTOCOL_VERSION = '1.2' # @api private