From 160544beea6a3bb5f7d569a4c711e626b8efe75d Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Fri, 12 Jun 2020 16:45:44 +0100 Subject: [PATCH] Bump version to 0.11.1, update CHANGELOG.md --- CHANGELOG.md | 15 +++++++++++++++ CoreXLSX.podspec | 2 +- CoreXLSX.xcodeproj/project.pbxproj | 4 ++-- Example/Podfile.lock | 2 +- README.md | 8 ++++---- 5 files changed, 23 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9149fc7b..ffb717e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# 0.11.1 (12 June 2020) + +This is a bugfix release that resolves an issue with parsing cells that contain time +values. Thanks to [@mb812](https://github.com/mb812) for reporting it! + +**Closed issues:** + +- Error parsing cells with Time value ([#114](https://github.com/CoreOffice/CoreXLSX/issues/114)) +- `file.parseWorksheetPathsAndNames()` wanna `workbook: <#Workbook#>` ([#113](https://github.com/CoreOffice/CoreXLSX/issues/113)) +- XLSXFile not initialising when passing document directory path ([#108](https://github.com/CoreOffice/CoreXLSX/issues/108)) + +**Merged pull requests:** + +- Fix time values returned by Cell.dateValue ([#115](https://github.com/CoreOffice/CoreXLSX/pull/115)) via [@MaxDesiatov](https://github.com/MaxDesiatov) + # 0.11.0 (30 May 2020) This is a feature release that enables compatibility with [CryptoOffice](https://github.com/CoreOffice/CryptoOffice) for decrypting spreadsheets. Additionally, with 0.11.0 you can easily get worksheet names with a new `parseWorksheetPathsAndNames` function on `XLSXFile` and get rich text values from cells with a new `richStringValue` function on `Cell`. diff --git a/CoreXLSX.podspec b/CoreXLSX.podspec index b20b6c40..ee69b168 100644 --- a/CoreXLSX.podspec +++ b/CoreXLSX.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'CoreXLSX' - s.version = '0.11.0' + s.version = '0.11.1' s.summary = 'Excel spreadsheet (XLSX) format support in pure Swift' # This description is used to generate tags and improve search results. diff --git a/CoreXLSX.xcodeproj/project.pbxproj b/CoreXLSX.xcodeproj/project.pbxproj index 14eb25a3..e83534cb 100644 --- a/CoreXLSX.xcodeproj/project.pbxproj +++ b/CoreXLSX.xcodeproj/project.pbxproj @@ -1129,7 +1129,7 @@ CLANG_ENABLE_OBJC_ARC = YES; COMBINE_HIDPI_IMAGES = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 0.11.0; + CURRENT_PROJECT_VERSION = 0.11.1; DEBUG_INFORMATION_FORMAT = dwarf; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_NS_ASSERTIONS = YES; @@ -1156,7 +1156,7 @@ CLANG_ENABLE_OBJC_ARC = YES; COMBINE_HIDPI_IMAGES = YES; COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 0.11.0; + CURRENT_PROJECT_VERSION = 0.11.1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DYLIB_INSTALL_NAME_BASE = "@rpath"; GCC_OPTIMIZATION_LEVEL = s; diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 3e41995f..5c0a1bc5 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - CoreXLSX (0.11.0): + - CoreXLSX (0.11.1): - XMLCoder (~> 0.11.1) - ZIPFoundation (~> 0.9.11) - XMLCoder (0.11.1) diff --git a/README.md b/README.md index 365d5f61..93cb7396 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`. ```swift dependencies: [ .package(url: "https://github.com/CoreOffice/CoreXLSX.git", - .upToNextMinor(from: "0.11.0")) + .upToNextMinor(from: "0.11.1")) ] ``` @@ -172,7 +172,7 @@ GUI](https://developer.apple.com/documentation/xcode/adding_package_dependencies ### CocoaPods CoreXLSX is available through [CocoaPods](https://cocoapods.org) on Apple's -platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.11.0'` to your +platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.11.1'` to your `Podfile` like shown here: ```ruby @@ -181,7 +181,7 @@ source 'https://github.com/CocoaPods/Specs.git' # platform :ios, '9.0' use_frameworks! target '' do - pod 'CoreXLSX', '~> 0.11.0' + pod 'CoreXLSX', '~> 0.11.1' end ``` @@ -202,7 +202,7 @@ $ brew install carthage Inside of your `Cartfile`, add GitHub path to `CoreXLSX` and its latest version: ```ogdl -github "CoreOffice/CoreXLSX" ~> 0.11.0 +github "CoreOffice/CoreXLSX" ~> 0.11.1 ``` Then, run the following command to build the framework: