From 0776fcff2d1507aa5ff175bf2b5becfbeb403c45 Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Wed, 1 Mar 2023 20:34:23 -0500 Subject: [PATCH] Version 2.3.0 --- CHANGELOG.md | 11 +++++++++-- contrib/ruby/Gemfile.lock | 2 +- contrib/ruby/lib/trilogy/version.rb | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1709e32..c986f421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## Unreleased +## 2.3.0 + ### Added - - Implement multi-statement support on the Ruby binding. - - Add `#connection_options` method to Ruby binding. + - Implement multi-statement support on the Ruby binding. #35 + - Add `#connection_options` method to Ruby binding. #48 + - Introduced a variety of more detailed error classes. #15 and #41 + +### Changed + - Cast to Integer rather than BigDecimal for column types without decimal digits. #37 + - Error codes 1044-1045, 1064, 1152-1161, 1205, and 1927 recategorized as `ConnectionError`. #15 ## 2.2.0 diff --git a/contrib/ruby/Gemfile.lock b/contrib/ruby/Gemfile.lock index 7c3f418b..183ce571 100644 --- a/contrib/ruby/Gemfile.lock +++ b/contrib/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - trilogy (2.2.0) + trilogy (2.3.0) GEM remote: https://rubygems.org/ diff --git a/contrib/ruby/lib/trilogy/version.rb b/contrib/ruby/lib/trilogy/version.rb index 85944ec2..bdc069be 100644 --- a/contrib/ruby/lib/trilogy/version.rb +++ b/contrib/ruby/lib/trilogy/version.rb @@ -1,3 +1,3 @@ class Trilogy - VERSION = "2.2.0" + VERSION = "2.3.0" end