diff --git a/CHANGELOG.md b/CHANGELOG.md index d5a0868..5f1a4d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.19.3 - 2024-01-18 + +* Add more output references to CSV and XLSX writers. It is now possible + to ignore extra attributes, sort tuples before outputting, and reducing + redundancy via group attributes. See OutputPreference class. + +* Ordering.new now supports a simple attribute list without asc/desc info. + Ascending order is used for all attributes in such case. + # 0.19.2 - 2022-04-25 * Add support for `.extend(:x => :y)` shortcuts. They are diff --git a/lib/bmg/version.rb b/lib/bmg/version.rb index af458dc..8f44f2a 100644 --- a/lib/bmg/version.rb +++ b/lib/bmg/version.rb @@ -2,7 +2,7 @@ module Bmg module Version MAJOR = 0 MINOR = 19 - TINY = 2 + TINY = 3 end VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::TINY}" end