Skip to content

Commit

Permalink
Release 4.0.0
Browse files Browse the repository at this point in the history
* Fix percentage rounding errors. Previously we were dividing by 100, when we
  actually don't need to, so percentage types were 100x too small. Fixes woahdae#21.
  Major bump because workarounds might have been implemented for previous
  incorrect behavior.
* Fix small oddity in one currency format where round numbers would be cast
  to an integer instead of a float.
  • Loading branch information
woahdae committed Mar 5, 2023
1 parent 126e1c7 commit 5a4ff88
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 4.0.0

* Fix percentage rounding errors. Previously we were dividing by 100, when we
actually don't need to, so percentage types were 100x too small. Fixes #21.
Major bump because workarounds might have been implemented for previous
incorrect behavior.
* Fix small oddity in one currency format where round numbers would be cast
to an integer instead of a float.

### 3.0.1

* Fix parsing "chunky" UTF-8 workbooks. Closes issues #39 and #45. See ce67f0d4.
Expand Down
2 changes: 1 addition & 1 deletion lib/simple_xlsx_reader/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module SimpleXlsxReader
VERSION = '3.0.1'
VERSION = '4.0.0'
end

0 comments on commit 5a4ff88

Please sign in to comment.