Skip to content

Commit

Permalink
v3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cfsimplicity committed Nov 14, 2023
1 parent c694362 commit 364a906
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 3.11.0 - 14 November 2023

- Enhancements
- \#340 Add readCsv() for large file/advanced csv processing
- \#336 Add parallelization option to queryToCsv()

- Fixes
- \#339 csvToQuery() ignores trim setting when reading from file

- Maintenance
- \#334 Upgrade excel-streaming-reader to 4.2.0

## 3.10.0 - 29 September 2023

- Maintenance
Expand Down
2 changes: 1 addition & 1 deletion ModuleConfig.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ component{
this.author = "Julian Halliwell";
this.webURL = "https://github.com/cfsimplicity/spreadsheet-cfml";
this.description = "CFML Spreadsheet Library";
this.version = "3.10.0";
this.version = "3.11.0";
this.autoMapModels = false;

function configure(){
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ You may wish to place the spreadsheet library files in a central location with a
* [isRowHidden](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/isRowHidden)
* [isStreamingXmlFormat](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/isStreamingXmlFormat)
* [isXmlFormat](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/isXmlFormat)
* [readCsv](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/readCsv)
* [readLargeFile](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/readLargeFile)
* [removePrintGridlines](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/removePrintGridlines)
* [renameSheet](https://github.com/cfsimplicity/spreadsheet-cfml/wiki/renameSheet)
Expand Down
2 changes: 1 addition & 1 deletion Spreadsheet.cfc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
component accessors="true"{

//"static"
property name="version" default="3.10.0-develop" setter="false";
property name="version" default="3.11.0" setter="false";
property name="osgiLibBundleVersion" default="5.2.4.1" setter="false"; //first 3 octets = POI version; increment 4th with other jar updates
property name="osgiLibBundleSymbolicName" default="spreadsheet-cfml" setter="false";
property name="exceptionType" default="cfsimplicity.spreadsheet" setter="false";
Expand Down
4 changes: 2 additions & 2 deletions box.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "Spreadsheet CFML",
"slug" : "spreadsheet-cfml",
"version" : "3.10.0",
"version" : "3.11.0",
"shortDescription" : "CFML spreadsheet library",
"author" : "Julian Halliwell",
"location" : "forgeboxStorage",
Expand All @@ -28,7 +28,7 @@
"testbox":"test/testbox/"
},
"type" : "modules",
"keywords" : [ "cfspreadsheet", "coldfusion", "lucee", "module", "spreadsheet" ],
"keywords" : [ "cfspreadsheet", "coldfusion", "lucee", "module", "spreadsheet", "csv" ],
"private" : "false",
"ignore" : [ ".github", "build", "src", "test", ".gitattributes", "CHANGELOG.md", "README.md" ]
}

0 comments on commit 364a906

Please sign in to comment.