All Versions
24
Latest Version
Avg Release Cycle
211 days
Latest Release
922 days ago

Changelog History
Page 1

  • v3.0.2 Changes

    September 19, 2021
    • ๐Ÿ›  fix align_column for nil values and colspan
  • v3.0.1 Changes

    May 10, 2021
    • ๐Ÿ‘Œ Support for unicode-display_width 2.0
    • ๐Ÿ›  Fix issue where last row of an empty table changed format
  • v3.0.0 Changes

    January 27, 2020
    • ๐Ÿ‘Œ 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.

    For example, previously the output of a table may be: +------+-----+ | Title | +------+-----+ | Char | Num | +------+-----+ | a | 1 | | b | 2 | | c | 3 | +------+-----+

    ๐Ÿšš And now the + character above the word Title is removed, as it is no longer considered an intersection:

        +------------+
        |   Title    |
        +------+-----+
        | Char | Num |
        +------+-----+
        | a    | 1   |
        | b    | 2   |
        +------+-----+
    
    • 0๏ธโƒฃ The default border remains an ASCII border for backwards compatibility, however multiple border classes are included / documented, and user defined border types can be applied as needed.

    โšก๏ธ In support of this update, the following issues were addressed:

    • colspan creates conflict with colorize (#95)
    • 0๏ธโƒฃ Use nice UTF box-drawing characters by default (#99)
      • Note that AsciiBorder is stll the default
    • ๐Ÿ’… Border-left and border-right style (#100)
    • ๐Ÿ’… Helper function to style as Markdown (#111)
      • Achieved using MarkdownBorder
  • v2.0.0 Changes

    October 28, 2020
    • โฌ‡๏ธ Drops official support for Ruby 1.9.x with and of life on 2015-02-23
    • โฌ‡๏ธ Drops official support for Ruby 2.0.x with and of life on 2016-02-24
    • โฌ‡๏ธ Drops official support for Ruby 2.1.x with and of life on 2017-03-31
    • โฌ‡๏ธ Drops official support for Ruby 2.2.x with and of life on 2018-03-31
    • โฌ‡๏ธ Drops official support for Ruby 2.3.x with and of life on 2019-03-31
  • v1.8.0 Changes

    May 16, 2017

    Top and bottom borders can be disabled (@kubakrzempek, #83)

    unicode-display-width dependency relaxes (@mvz, #88)

    ๐Ÿ›  Readme and docs fixes (@loualrid, #82 and @leoarnold, #86)

    ๐Ÿ›  Fixed some test-related warnings (@JuanitoFatas, #81 and @mvz, #89)

  • v1.7.3 Changes

    September 21, 2016
    • ๐Ÿ›  Fixed compatibility issues for Ruby 1.9, 2.0, 2.1. (@vivekbisen, #80)
  • v1.7.2 Changes

    September 09, 2016
    • ๐Ÿ›  Fix packing table to a minimal width (@vizv, #76)
  • v1.7.1 Changes

    August 29, 2016
    • โšก๏ธ Update unicode-display_width to fix behavior with signal traps [#78, @jrmhaig]
  • v1.7.0 Changes

    August 29, 2016

    ๐Ÿš€ All props to @vizv for this release!

    • Fixed some spec failures
    • Added support for full-width characters (East Asian alphabets, etc)
  • v1.6.0 Changes

    June 06, 2016
    • Added table styles - margin_left, all_separators.