Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cfsimplicity committed Apr 12, 2019
1 parent 9cc6ba3 commit ffd9a6d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.2.0 - 12 April 2019

- \#163 Upgrade POI to 4.1.0
- \#162 Support decryption of encrypted binary (XLS) spreadsheets. Add support for decryption in ACF.
- DEPRECATED: `engineSupportsEncryption` environment key. Use `engineSupportsWriteEncryption`

## 2.1.1 - 29 March 2019

- \#160 `includeQueryColumnNames` in `addRows()` produces invalid xlsx
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/lucee-spreadsheet";
this.description = "Spreadsheet Library for Lucee";
this.version = "2.1.1-develop";
this.version = "2.2.0";
this.autoMapModels = false;

function configure(){
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ The `read()` method also features the following additional options not available
* `fillMergedCellsWithVisibleValue`
* `includeHiddenColumns`
* `includeRichTextFormatting`
* `password` to open encrypted XML (only) spreadsheets
* `password` to open encrypted spreadsheets

[Full documentation of read()](https://github.com/cfsimplicity/lucee-spreadsheet/wiki/read)

Expand All @@ -190,7 +190,7 @@ spreadsheet = New spreadsheetLibrary.spreadsheet( dateFormats={ DATE: "mm/dd/yyy

Although primarily intended for Lucee, the library can be run under ColdFusion 2016 or higher. This may be useful where you want to your codebase to be cross-compatible between the two engines.

Please note though that _reading or writing password-protected files only works with Lucee_.
Please note though that _writing password-protected files only works with Lucee_.

### JavaLoader

Expand Down
2 changes: 1 addition & 1 deletion Spreadsheet.cfc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
component{

variables.version = "2.1.1-develop";
variables.version = "2.2.0";
variables.javaLoaderName = "spreadsheetLibraryClassLoader-#variables.version#-#Hash( GetCurrentTemplatePath() )#";
variables.javaLoaderDotPath = "javaLoader.JavaLoader";
variables.dateFormats = {
Expand Down
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "LuceeSpreadsheet",
"slug" : "lucee-spreadsheet",
"version" : "2.1.1-develop",
"version" : "2.2.0",
"shortDescription" : "Spreadsheet Library for Lucee",
"author" : "Julian Halliwell",
"location" : "https://github.com/cfsimplicity/lucee-spreadsheet",
Expand Down

0 comments on commit ffd9a6d

Please sign in to comment.