From 8c8bf7a802f1fb7538430520a7ddfd8f6b58f18d Mon Sep 17 00:00:00 2001 From: cfsimplicity Date: Fri, 17 Dec 2021 12:45:47 +0000 Subject: [PATCH] v3.2.2 --- CHANGELOG.md | 6 ++++++ ModuleConfig.cfc | 2 +- Spreadsheet.cfc | 2 +- box.json | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 762027d..862c005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.2.2 - 17 December 2021 + +- Fixes + -\#277 Date format initialization doesn't work in Lucee with full null support + -\#278 Adding header/footer images throws error with null support enabled + ## 3.2.1 - 15 December 2021 - Security Update diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index fc8d731..8c4030c 100644 --- a/ModuleConfig.cfc +++ b/ModuleConfig.cfc @@ -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.2.1"; + this.version = "3.2.2"; this.autoMapModels = false; function configure(){ diff --git a/Spreadsheet.cfc b/Spreadsheet.cfc index d42d705..4efebf1 100644 --- a/Spreadsheet.cfc +++ b/Spreadsheet.cfc @@ -1,7 +1,7 @@ component accessors="true"{ //"static" - property name="version" default="3.2.1-develop" setter="false"; + property name="version" default="3.2.2" setter="false"; property name="osgiLibBundleVersion" default="5.1.0.2" 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"; diff --git a/box.json b/box.json index e32b50c..abed8a8 100644 --- a/box.json +++ b/box.json @@ -1,10 +1,10 @@ { "name" : "Spreadsheet CFML", "slug" : "spreadsheet-cfml", - "version" : "3.2.1", + "version" : "3.2.2", "shortDescription" : "CFML spreadsheet library", "author" : "Julian Halliwell", - "location" : "https://github.com/cfsimplicity/spreadsheet-cfml/archive/v3.2.1.zip", + "location" : "https://github.com/cfsimplicity/spreadsheet-cfml/archive/v3.2.2.zip", "homepage" : "https://github.com/cfsimplicity/spreadsheet-cfml", "projectURL" : "https://github.com/cfsimplicity/spreadsheet-cfml", "documentation" : "https://github.com/cfsimplicity/spreadsheet-cfml/blob/main/README.md",