Skip to content

Commit 160544b

Browse files
committed
Bump version to 0.11.1, update CHANGELOG.md
1 parent 90f00c1 commit 160544b

5 files changed

Lines changed: 23 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 0.11.1 (12 June 2020)
2+
3+
This is a bugfix release that resolves an issue with parsing cells that contain time
4+
values. Thanks to [@mb812](https://github.com/mb812) for reporting it!
5+
6+
**Closed issues:**
7+
8+
- Error parsing cells with Time value ([#114](https://github.com/CoreOffice/CoreXLSX/issues/114))
9+
- `file.parseWorksheetPathsAndNames()` wanna `workbook: <#Workbook#>` ([#113](https://github.com/CoreOffice/CoreXLSX/issues/113))
10+
- XLSXFile not initialising when passing document directory path ([#108](https://github.com/CoreOffice/CoreXLSX/issues/108))
11+
12+
**Merged pull requests:**
13+
14+
- Fix time values returned by Cell.dateValue ([#115](https://github.com/CoreOffice/CoreXLSX/pull/115)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
15+
116
# 0.11.0 (30 May 2020)
217

318
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`.

CoreXLSX.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'CoreXLSX'
11-
s.version = '0.11.0'
11+
s.version = '0.11.1'
1212
s.summary = 'Excel spreadsheet (XLSX) format support in pure Swift'
1313

1414
# This description is used to generate tags and improve search results.

CoreXLSX.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@
11291129
CLANG_ENABLE_OBJC_ARC = YES;
11301130
COMBINE_HIDPI_IMAGES = YES;
11311131
COPY_PHASE_STRIP = NO;
1132-
CURRENT_PROJECT_VERSION = 0.11.0;
1132+
CURRENT_PROJECT_VERSION = 0.11.1;
11331133
DEBUG_INFORMATION_FORMAT = dwarf;
11341134
DYLIB_INSTALL_NAME_BASE = "@rpath";
11351135
ENABLE_NS_ASSERTIONS = YES;
@@ -1156,7 +1156,7 @@
11561156
CLANG_ENABLE_OBJC_ARC = YES;
11571157
COMBINE_HIDPI_IMAGES = YES;
11581158
COPY_PHASE_STRIP = YES;
1159-
CURRENT_PROJECT_VERSION = 0.11.0;
1159+
CURRENT_PROJECT_VERSION = 0.11.1;
11601160
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
11611161
DYLIB_INSTALL_NAME_BASE = "@rpath";
11621162
GCC_OPTIMIZATION_LEVEL = s;

Example/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- CoreXLSX (0.11.0):
2+
- CoreXLSX (0.11.1):
33
- XMLCoder (~> 0.11.1)
44
- ZIPFoundation (~> 0.9.11)
55
- XMLCoder (0.11.1)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
161161
```swift
162162
dependencies: [
163163
.package(url: "https://github.com/CoreOffice/CoreXLSX.git",
164-
.upToNextMinor(from: "0.11.0"))
164+
.upToNextMinor(from: "0.11.1"))
165165
]
166166
```
167167

@@ -172,7 +172,7 @@ GUI](https://developer.apple.com/documentation/xcode/adding_package_dependencies
172172
### CocoaPods
173173

174174
CoreXLSX is available through [CocoaPods](https://cocoapods.org) on Apple's
175-
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.11.0'` to your
175+
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.11.1'` to your
176176
`Podfile` like shown here:
177177

178178
```ruby
@@ -181,7 +181,7 @@ source 'https://github.com/CocoaPods/Specs.git'
181181
# platform :ios, '9.0'
182182
use_frameworks!
183183
target '<Your Target Name>' do
184-
pod 'CoreXLSX', '~> 0.11.0'
184+
pod 'CoreXLSX', '~> 0.11.1'
185185
end
186186
```
187187

@@ -202,7 +202,7 @@ $ brew install carthage
202202
Inside of your `Cartfile`, add GitHub path to `CoreXLSX` and its latest version:
203203

204204
```ogdl
205-
github "CoreOffice/CoreXLSX" ~> 0.11.0
205+
github "CoreOffice/CoreXLSX" ~> 0.11.1
206206
```
207207

208208
Then, run the following command to build the framework:

0 commit comments

Comments
 (0)