From b7c19031344ac75408fd88493c96d60bbbf22be9 Mon Sep 17 00:00:00 2001 From: Kevin Olbrich Date: Tue, 29 Dec 2020 11:26:07 -0500 Subject: [PATCH] Bump version to 2.3.2 and update changelog (#215) --- CHANGELOG.txt | 4 ++++ Gemfile.lock | 2 +- lib/ruby_units/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 89b8c95a..bb85f86a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,9 @@ Change Log for Ruby-units ========================= +2020-12-29 2.3.2 * Remove Jeweler (see #178) also adds Code of Conduct + * Fix specs related to Complex comparisons (see #213) + * Add support for Ruby 3.0 (also drop support for 2.3 and 2.4) (see #211) +2018-09-26 2.3.1 * Addition and subtraction of unitless values. (see #175) 2018-03-06 2.3.0 * Fix add (+) and subtract (-) for BigDecimal scalars. (see #167) * Update ruby versions (#163) * fix: temperature converting rational issue (#164) diff --git a/Gemfile.lock b/Gemfile.lock index 63329334..21f5a025 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ruby-units (2.3.1) + ruby-units (2.3.2) GEM remote: https://rubygems.org/ diff --git a/lib/ruby_units/version.rb b/lib/ruby_units/version.rb index b11b0209..704f48aa 100644 --- a/lib/ruby_units/version.rb +++ b/lib/ruby_units/version.rb @@ -1,5 +1,5 @@ module RubyUnits class Unit < Numeric - VERSION = '2.3.1'.freeze + VERSION = '2.3.2'.freeze end end