From 469c9c0184d719ead7b07457900dadce2a997be9 Mon Sep 17 00:00:00 2001 From: cfsimplicity Date: Fri, 25 Mar 2022 12:13:34 +0000 Subject: [PATCH] v3.4.4 --- 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 294f3d7..dd98d79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 3.4.4 - 25 March 2022 + +- \#289 Prevent one-off OSGi bundle errors when the bundle version changes +- \#290 Upgrade POI to 5.2.2 + ## 3.4.3 - 8 March 2022 - \#288 sheetInfo() should default to the currently active sheet, not the first diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index cc7075e..b11a3fc 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.4.3"; + this.version = "3.4.4"; this.autoMapModels = false; function configure(){ diff --git a/Spreadsheet.cfc b/Spreadsheet.cfc index 1dfb94c..7cf22c4 100644 --- a/Spreadsheet.cfc +++ b/Spreadsheet.cfc @@ -1,7 +1,7 @@ component accessors="true"{ //"static" - property name="version" default="3.4.3-develop" setter="false"; + property name="version" default="3.4.4" setter="false"; property name="osgiLibBundleVersion" default="5.2.2.0" 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 5235bd7..5249c9a 100644 --- a/box.json +++ b/box.json @@ -1,10 +1,10 @@ { "name" : "Spreadsheet CFML", "slug" : "spreadsheet-cfml", - "version" : "3.4.3", + "version" : "3.4.4", "shortDescription" : "CFML spreadsheet library", "author" : "Julian Halliwell", - "location" : "https://github.com/cfsimplicity/spreadsheet-cfml/archive/v3.4.3.zip", + "location" : "https://github.com/cfsimplicity/spreadsheet-cfml/archive/v3.4.4.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",