diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e7e7aa..ac6336b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## 2.2.0 + +### Changed + +- Bump minimum Trilogy version to 2.3.0. #32 +- Start using the new Trilogy 2.3.0 error classes. #24 +- Rely on the upstream `execute` method (which includes an `allow_retry` option). #13 +- Rely on the upstream `raw_execute` method (which includes a new warning feature). #29 +- Replace custom dbconsole patch with `TrilogyAdapter::Connection#trilogy_adapter_class`. #8 + +### Fixed + +- Don't retain the old connection if reconnect fails. #13 +- Call `super` in `TrilogyAdapter#disconnect!` to ensure we properly reset state. #11 + ## 2.1.0 ### Added diff --git a/lib/trilogy_adapter/version.rb b/lib/trilogy_adapter/version.rb index 42f3161..e4d8847 100644 --- a/lib/trilogy_adapter/version.rb +++ b/lib/trilogy_adapter/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TrilogyAdapter - VERSION = "2.1.0" + VERSION = "2.2.0" end