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