diff options
| author | Noel Peden <[email protected]> | 2022-10-21 05:48:23 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-21 05:48:23 -0700 |
| commit | ebd11df1c11e3fe3eb0870e4c43d7ff8771ffe0d (patch) | |
| tree | 01ec5a854f317a4af5def29238ef077a8a10181a | |
| parent | 88d26b1ff504e4d6801be5e51ff98d182e932dac (diff) | |
| parent | 99d52e3e41ab8dd933b0ecabe509c0a33cc1e28b (diff) | |
| download | caxlsx-ebd11df1c11e3fe3eb0870e4c43d7ff8771ffe0d.tar.gz caxlsx-ebd11df1c11e3fe3eb0870e4c43d7ff8771ffe0d.zip | |
Merge pull request #170 from kiskoza/master
Version bump to 3.3.0 [skip ci]
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | README.md | 7 | ||||
| -rw-r--r-- | lib/axlsx/version.rb | 2 |
3 files changed, 7 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 13d1f43c..444110b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ CHANGELOG --------- +- **Unreleased** -- **Unreleased - Axlsx Styler** - - [PR #xx](https://github.com/caxlsx/caxlsx/pull/xx)Merge in the gem [`axlsx_styler`](https://github.com/axlsx-styler-gem/axlsx_styler) +- **October.21.22**: 3.3.0 + - [PR #168](https://github.com/caxlsx/caxlsx/pull/168) - Merge in the gem [`axlsx_styler`](https://github.com/axlsx-styler-gem/axlsx_styler) - Add ability to both apply or append to existing styles after rows have been created using `worksheet.add_style` - `worksheet.add_style "A1", {b: true}` - `worksheet.add_style "A1:B2", {b: true}` @@ -13,8 +14,6 @@ CHANGELOG - `worksheet.add_border ["A1", "B2:C7", "D8:E9"], {style: :thin}` - Add `Axlsx::BorderCreator` the class used under the hood for `worksheet.add_border` - Allow specifying `:all` in `border: {edges: :all}` which is a shortcut for `border: {edges: [:left, :right, :top, :bottom]}` - -- **Unreleased** - [PR #156](https://github.com/caxlsx/caxlsx/pull/156) - Prevent Excel from crashing when multiple data columns added to PivotTable - [PR #155](https://github.com/caxlsx/caxlsx/pull/155) - Add `hideDropDown` alias for `showDropDown` setting, as the latter is confusing to use (because its logic seems inverted). - [PR #143](https://github.com/caxlsx/caxlsx/pull/143) - Add setting `sort_on_headers` for pivot tables @@ -1,13 +1,12 @@ # Caxlsx (Community Continued Version) [](https://github.com/caxlsx/caxlsx/actions) -[](http://badge.fury.io/rb/caxlsx) +[](http://badge.fury.io/rb/caxlsx)  - + ## Notice: Community Axlsx Organization -To better maintain the Axlsx ecosystem, all related gems have been forked or moved to the following community organization: +To better maintain the Axlsx ecosystem, all related gems have been forked or moved to the following community organization: http://github.com/caxlsx diff --git a/lib/axlsx/version.rb b/lib/axlsx/version.rb index 0382597b..2fda2686 100644 --- a/lib/axlsx/version.rb +++ b/lib/axlsx/version.rb @@ -1,5 +1,5 @@ module Axlsx # The current version - VERSION = "3.2.0" + VERSION = "3.3.0" end |
