Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-harvey committed Jan 14, 2020
1 parent 616c8cd commit c39a454
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
@@ -1,9 +1,16 @@
# Changelog

### v2.2.0

* New `column_formatter` option on `Tabulo::Table` initializer, enabling the table's default column
formatter to be customized.
* New `row_divider_frequency` option on `Tabulo::Table` initializer, to add a horizontal dividing line
after every N rows.

### v2.1.1

* Fix issue where blank lines appear in table when certain border types (e.g. `:classic`) are
used with a non-nil `:border_styler`.
used with a non-nil `border_styler`.
* Minor documentation fix

### v2.1.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -677,7 +677,7 @@ a new table in which the rows and columns are swapped:
By default, a header row is added to the new table, showing the string value of the element
represented in that column. This can be configured, however, along with other aspects of
`transpose`'s behaviour. For details, see the
[documentation](https://www.rubydoc.info/gems/tabulo/2.1.1/Tabulo/Table#transpose-instance_method).
[documentation](https://www.rubydoc.info/gems/tabulo/2.2.0/Tabulo/Table#transpose-instance_method).

<a name="borders"></a>
### Configuring borders
Expand Down Expand Up @@ -915,14 +915,14 @@ The gem is available as open source under the terms of the [MIT
License](http://opensource.org/licenses/MIT).

[Gem Version]: https://rubygems.org/gems/tabulo
[Documentation]: http://www.rubydoc.info/gems/tabulo/2.1.1
[Documentation]: http://www.rubydoc.info/gems/tabulo/2.2.0
[Build Status]: https://travis-ci.org/matt-harvey/tabulo
[Coverage Status]: https://coveralls.io/r/matt-harvey/tabulo
[Code Climate]: https://codeclimate.com/github/matt-harvey/tabulo
[Awesome Ruby]: https://github.com/markets/awesome-ruby#cli-utilities

[GV img]: https://img.shields.io/gem/v/tabulo.svg
[DC img]: https://img.shields.io/badge/documentation-v2.1.1-blue.svg
[DC img]: https://img.shields.io/badge/documentation-v2.2.0-blue.svg
[BS img]: https://img.shields.io/travis/matt-harvey/tabulo.svg
[CS img]: https://img.shields.io/coveralls/matt-harvey/tabulo.svg
[CC img]: https://codeclimate.com/github/matt-harvey/tabulo/badges/gpa.svg
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.1.1
2.2.0
2 changes: 1 addition & 1 deletion lib/tabulo/version.rb
@@ -1,3 +1,3 @@
module Tabulo
VERSION = "2.1.1"
VERSION = "2.2.0"
end

0 comments on commit c39a454

Please sign in to comment.