diff --git a/Gemfile.lock b/Gemfile.lock index 1754d17..af232e5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - terminal-table (3.0.0) + terminal-table (3.0.1) unicode-display_width (>= 1.1.1, < 3) GEM @@ -46,4 +46,4 @@ DEPENDENCIES tins (~> 1.0.0) BUNDLED WITH - 2.2.0 + 2.2.3 diff --git a/History.rdoc b/History.rdoc index 5f29b48..7aabb67 100644 --- a/History.rdoc +++ b/History.rdoc @@ -1,4 +1,11 @@ +3.0.1 / 2021-05-10 +================== + +- Support for unicode-display_width 2.0 +- Fix issue where last row of an empty table changed format + 3.0.0 / 2020-01-27 +================== - Support for (optional) Unicode border styles on tables. In order to support decent looking Unicode borders, different types of intersections get different types of intersection characters. This has the side effect of subtle formatting differences even for the ASCII table border case due to removal of certain intersections near colspans. diff --git a/lib/terminal-table/version.rb b/lib/terminal-table/version.rb index d6d78f8..c218c64 100644 --- a/lib/terminal-table/version.rb +++ b/lib/terminal-table/version.rb @@ -1,5 +1,5 @@ module Terminal class Table - VERSION = '3.0.0' + VERSION = '3.0.1' end end