From 09fc0c46c5693433a3edc8789c64081e08cad5bc Mon Sep 17 00:00:00 2001 From: Julian Halliwell Date: Fri, 3 Apr 2020 15:00:41 +0100 Subject: [PATCH] v2.9.0 --- CHANGELOG.md | 9 +++++++++ ModuleConfig.cfc | 2 +- Spreadsheet.cfc | 2 +- box.json | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8bd276..9131f49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 2.9.0 - 3 April 2020 + +- Enhancements + - \#186 Add option to formatting methods to preserve existing cell styles + - \#184 Add support for DATETIME and DATETIME2 (MSSQL) database column types + +- Fixes + - \#185 Time only values do not respect custom TIME format specifying fractions of a second Fixes + ## 2.8.0 - 23 March 2020 - Enhancements diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index aaf78cc..9b2f1b2 100644 --- a/ModuleConfig.cfc +++ b/ModuleConfig.cfc @@ -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.8.0"; + this.version = "2.9.0"; this.autoMapModels = false; function configure(){ diff --git a/Spreadsheet.cfc b/Spreadsheet.cfc index cb4ecf8..a133b14 100644 --- a/Spreadsheet.cfc +++ b/Spreadsheet.cfc @@ -1,7 +1,7 @@ component accessors="true"{ //static - property name="version" default="2.8.0-develop" setter="false"; + property name="version" default="2.9.0" setter="false"; property name="exceptionType" default="cfsimplicity.lucee.spreadsheet" setter="false"; //commonly invoked POI class names property name="HSSFWorkbookClassName" default="org.apache.poi.hssf.usermodel.HSSFWorkbook" setter="false"; diff --git a/box.json b/box.json index 450d1da..f5c2d8c 100644 --- a/box.json +++ b/box.json @@ -1,10 +1,10 @@ { "name" : "LuceeSpreadsheet", "slug" : "lucee-spreadsheet", - "version" : "2.8.0", + "version" : "2.9.0", "shortDescription" : "Spreadsheet Library for Lucee", "author" : "Julian Halliwell", - "location" : "https://github.com/cfsimplicity/lucee-spreadsheet/archive/v2.8.0.zip", + "location" : "https://github.com/cfsimplicity/lucee-spreadsheet/archive/v2.9.0.zip", "homepage" : "https://github.com/cfsimplicity/lucee-spreadsheet", "projectURL" : "https://github.com/cfsimplicity/lucee-spreadsheet", "documentation" : "https://github.com/cfsimplicity/lucee-spreadsheet/blob/master/README.md",