From bed8602f3e1a0f319de6874417b4c1a452acc282 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Mon, 18 Sep 2023 13:56:40 -0700 Subject: [PATCH] Version 2.6.0 --- CHANGELOG.md | 9 +++++++++ contrib/ruby/Gemfile.lock | 2 +- contrib/ruby/lib/trilogy/version.rb | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d822b0c..cd7e44e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## Unreleased +## 2.6.0 + +### Changed + + - `TCP_NODELAY` is enabled on all TCP connections #122 + - `Trilogy::EOFError` is now raised for `TRILOGY_CLOSED_CONNECTION` instead + of the generic `Trilogy::QueryError` #118 + - `Trilogy::SyscallError` now inherits `Trilogy::ConnectionError` #118 + ## 2.5.0 ### Fixed diff --git a/contrib/ruby/Gemfile.lock b/contrib/ruby/Gemfile.lock index fab39938..9755b24d 100644 --- a/contrib/ruby/Gemfile.lock +++ b/contrib/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - trilogy (2.5.0) + trilogy (2.6.0) GEM remote: https://rubygems.org/ diff --git a/contrib/ruby/lib/trilogy/version.rb b/contrib/ruby/lib/trilogy/version.rb index 19af20ca..b5c61b30 100644 --- a/contrib/ruby/lib/trilogy/version.rb +++ b/contrib/ruby/lib/trilogy/version.rb @@ -1,3 +1,3 @@ class Trilogy - VERSION = "2.5.0" + VERSION = "2.6.0" end