Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## Unreleased

## 2.10.0

### Added

- Add `size` alias for `Trilogy::Result#count`. #209

### Fixed

- Declare bigdecimal dependency for Ruby 3.4+. #213
- Fix Ractor support. #215
- Use `append_cflags` instead of appending directly. #231
- Don't confuse length encoded int with EOF. #179

### Changed

- Speed up `Trilogy#escape` by 3 to 5x. #212
- Use a buffer pool. #214

## 2.9.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion contrib/ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
trilogy (2.9.0)
trilogy (2.10.0)
bigdecimal

GEM
Expand Down
2 changes: 1 addition & 1 deletion contrib/ruby/lib/trilogy/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Trilogy
VERSION = "2.9.0"
VERSION = "2.10.0"
end