diff options
| author | Noel Peden <[email protected]> | 2020-07-16 11:09:00 -0700 |
|---|---|---|
| committer | Noel Peden <[email protected]> | 2020-07-16 11:09:00 -0700 |
| commit | eb42e143ff4da05185032177369718d70cc89ff0 (patch) | |
| tree | b589cf0b79f3b5f4ca367ce944c9c7b65455930f | |
| parent | 0b6842e578509390456f7688a17a989bc0df87a6 (diff) | |
| download | caxlsx-eb42e143ff4da05185032177369718d70cc89ff0.tar.gz caxlsx-eb42e143ff4da05185032177369718d70cc89ff0.zip | |
Version bump to 3.0.2 [skip ci]
| -rw-r--r-- | CHANGELOG.md | 3 | ||||
| -rw-r--r-- | lib/axlsx/version.rb | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bd0e84c..e0dc288a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ CHANGELOG --------- -- **Unreleased** +- **July.16.20**: 3.0.2 + - [I #51](https://github.com/caxlsx/caxlsx/issues/51) - Images do not import on Windows. IO read set explicitly to binary mode. - [PR #53](https://github.com/caxlsx/caxlsx/pull/53) - Limit column width to 255. Maximum column width limit in MS Excel is 255 characters, see https://support.microsoft.com/en-us/office/excel-specifications-and-limits-1672b34d-7043-467e-8e27-269d656771c3 - [PR #44](https://github.com/caxlsx/caxlsx/pull/44) - Improve cell autowidth calculations. Previously columns with undefined/auto width would tend to be just slightly too small for the content. This is because certain letters were being excluded from the width calculation because they were deemed not wide enough. We now treat all characters as equal width which helps ensure columns auto-widths are actually large enough for the content. This will gain us a very slight performance improvement because of we are no longer searching the string for specific characters. diff --git a/lib/axlsx/version.rb b/lib/axlsx/version.rb index d6c7183f..eadd9e54 100644 --- a/lib/axlsx/version.rb +++ b/lib/axlsx/version.rb @@ -1,5 +1,5 @@ module Axlsx # The current version - VERSION = "3.0.1" + VERSION = "3.0.2" end |
