From 2eb90cd09bf2929b618de33faab615b21dee6a94 Mon Sep 17 00:00:00 2001 From: cfsimplicity Date: Sat, 18 Dec 2021 09:20:39 +0000 Subject: [PATCH] v3.2.3 --- CHANGELOG.md | 5 +++++ ModuleConfig.cfc | 2 +- Spreadsheet.cfc | 2 +- box.json | 4 ++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 862c005..fabc0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 3.2.3 - 18 December 2021 + +- Security Update + - \#279 Upgrade log4j to 2.17.0 + ## 3.2.2 - 17 December 2021 - Fixes diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index 8c4030c..71547c5 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.2"; + this.version = "3.2.3"; this.autoMapModels = false; function configure(){ diff --git a/Spreadsheet.cfc b/Spreadsheet.cfc index 230cf56..a35e9ef 100644 --- a/Spreadsheet.cfc +++ b/Spreadsheet.cfc @@ -1,7 +1,7 @@ component accessors="true"{ //"static" - property name="version" default="3.2.2-develop" setter="false"; + property name="version" default="3.2.3" setter="false"; property name="osgiLibBundleVersion" default="5.1.0.3" 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 abed8a8..03cd160 100644 --- a/box.json +++ b/box.json @@ -1,10 +1,10 @@ { "name" : "Spreadsheet CFML", "slug" : "spreadsheet-cfml", - "version" : "3.2.2", + "version" : "3.2.3", "shortDescription" : "CFML spreadsheet library", "author" : "Julian Halliwell", - "location" : "https://github.com/cfsimplicity/spreadsheet-cfml/archive/v3.2.2.zip", + "location" : "https://github.com/cfsimplicity/spreadsheet-cfml/archive/v3.2.3.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",