Skip to content

Commit

Permalink
bump to 5.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
HLWeil committed Feb 13, 2024
1 parent a260549 commit b99cd4e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,7 @@ tmp/
output/
.fsdocs/
/tests/FsSpreadsheet.JsNativeTests/fable/**/*.js
/tests/FsSpreadsheet.ExcelIO.Tests/TestFiles/WRITE_*.xlsx
/tests/JS/TestFiles/WRITE_*.xlsx
**/TestFiles/WRITE_*.xlsx
/js
/tests/FsSpreadsheet.Tests/js
/tests/JS/fable
Expand Down
12 changes: 12 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### 5.1.3+a260549 (Released 2024-2-13)
* Additions:
* [[#a260549](https://github.com/CSBiology/FsSpreadsheet/commit/a26054928881975896f2c07926261091979216a4)] update tests to change in empty workbook handling
* [[#4eaf806](https://github.com/CSBiology/FsSpreadsheet/commit/4eaf806c4e64bcabc762517e07001886efde4611)] add fail for writing empty workbook #38
* [[#6cc4d8d](https://github.com/CSBiology/FsSpreadsheet/commit/6cc4d8dfaa91832d6e28fdffe638600570c4e6fd)] Merge pull request #84 from fslaborg/speed
* [[#c9d00fb](https://github.com/CSBiology/FsSpreadsheet/commit/c9d00fb5203377447c25ef475d85e74c428cb6a9)] some speed improvements to xlsx reading
* [[#bd9b64b](https://github.com/CSBiology/FsSpreadsheet/commit/bd9b64be581a772513391b1758cfa1e78ab01473)] first draft of experimental ziparchive xlsx reader
* [[#2b88258](https://github.com/CSBiology/FsSpreadsheet/commit/2b882586b12aae0500eaad98d01603521dfee26f)] small speed improvement of reader by skipping sst include on opendocument cell
* Bugfixes:
* [[#8da67c9](https://github.com/CSBiology/FsSpreadsheet/commit/8da67c9c0ac537ba184d22b16f86d2d1b18f17ab)] small fixes and adjustments to xlsx reader and tests
* [[#886dcf2](https://github.com/CSBiology/FsSpreadsheet/commit/886dcf2ef7459096bf1a35a4fc6173e33f424758)] fix zipArchiveReader against default tests

### 5.1.2+21fd6e8 (Released 2024-1-30)
* Additions:
* [[#21fd6e8](https://github.com/CSBiology/FsSpreadsheet/commit/21fd6e82f6d9eab48b4197a56a5c9b9f06b51b0e)] improve reader speed by adjusting sharedStringTable usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fslab/fsspreadsheet",
"version": "5.1.2",
"version": "5.1.3",
"description": "Minimal spreadsheet creation and manipulation using exceljs io.",
"type": "module",
"main": "Xlsx.js",
Expand Down
4 changes: 2 additions & 2 deletions tests/TestUtils/DefaultTestObjects.fs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ type WriteTestFiles =

member this.asFileName =
match this with
| FsSpreadsheetNET -> "TestWorkbook_FsSpreadsheet_WRITE.net.xlsx"
| FsSpreadsheetJS -> "TestWorkbook_FsSpreadsheet_WRITE.js.xlsx"
| FsSpreadsheetNET -> "WRITE_TestWorkbook_FsSpreadsheet.net.xlsx"
| FsSpreadsheetJS -> "WRITE_TestWorkbook_FsSpreadsheet.js.xlsx"

member this.asRelativePath = $"{testFolder}/{this.asFileName}"
member this.asRelativePathNode = $"./tests/TestUtils/{testFolder}/{this.asFileName}"
Expand Down
Binary file not shown.

0 comments on commit b99cd4e

Please sign in to comment.