Skip to content

Commit 7f5df3c

Browse files
committed
Bump version to 0.14.0, update CHANGELOG.md
1 parent fa5fcbb commit 7f5df3c

4 files changed

Lines changed: 43 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# 0.14.0 (9 December 2020)
2+
3+
This release improves compatibility with different spreadsheet formats, simplifies cell font and
4+
formatting APIs, and drops support for Carthage. Additionally, Xcode 11.3 on macOS is now the
5+
oldest supported version for building CoreXLSX.
6+
7+
**Breaking changes:**
8+
9+
- Make `parseSharedStrings` return optional value ([#122](https://github.com/CoreOffice/CoreXLSX/pull/122)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
10+
- Test with Xcode 12, drop Carthage and Xcode 10 support ([#140](https://github.com/CoreOffice/CoreXLSX/pull/140)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
11+
12+
**Closed issues:**
13+
14+
- Unable to sort columns by `intValue` ([#137](https://github.com/CoreOffice/CoreXLSX/issues/137))
15+
- Cannot initialize SchemaType from invalid String value ([#136](https://github.com/CoreOffice/CoreXLSX/issues/136))
16+
- Odd cell.s value ([#134](https://github.com/CoreOffice/CoreXLSX/issues/134))
17+
- 0.13.0 not available on Cocoapods ([#133](https://github.com/CoreOffice/CoreXLSX/issues/133))
18+
- Unable to read xlsx file ([#130](https://github.com/CoreOffice/CoreXLSX/issues/130))
19+
- Increase speed of parsing? ([#127](https://github.com/CoreOffice/CoreXLSX/issues/127))
20+
- .xlsx File not opening with XLSXFile() ([#125](https://github.com/CoreOffice/CoreXLSX/issues/125))
21+
- Getting Data From a specific Worksheet ([#124](https://github.com/CoreOffice/CoreXLSX/issues/124))
22+
- ArchiveEntryNotFound error ([#121](https://github.com/CoreOffice/CoreXLSX/issues/121))
23+
- Printing an empty cell? ([#118](https://github.com/CoreOffice/CoreXLSX/issues/118))
24+
- Handling encrypted spreadsheets? ([#101](https://github.com/CoreOffice/CoreXLSX/issues/101))
25+
26+
**Merged pull requests:**
27+
28+
- Compare `ColumnReference` by `intValue` ([#139](https://github.com/CoreOffice/CoreXLSX/pull/139)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
29+
- Add missing `SchemaType.webExtensionTaskPanes` ([#138](https://github.com/CoreOffice/CoreXLSX/pull/138)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
30+
- Add `font(in:)` and `format(in:)` functions ([#135](https://github.com/CoreOffice/CoreXLSX/pull/135)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
31+
- Test with Swift 5.3 for Linux ([#132](https://github.com/CoreOffice/CoreXLSX/pull/132)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
32+
- Generate and publish docs with `swift-doc` ([#131](https://github.com/CoreOffice/CoreXLSX/pull/131)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
33+
- Add “person” to the relationship types ([#126](https://github.com/CoreOffice/CoreXLSX/pull/126)) via [@texuf](https://github.com/texuf)
34+
- Fix parsing root relationships worksheet paths ([#123](https://github.com/CoreOffice/CoreXLSX/pull/123)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
35+
136
# 0.13.0 (8 July 2020)
237

338
This is a bugfix release with breaking changes that make `count` property on `MergeCells` and all

CoreXLSX.podspec

Lines changed: 2 additions & 2 deletions
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.13.0'
11+
s.version = '0.14.0'
1212
s.summary = 'Excel spreadsheet (XLSX) format support in pure Swift'
1313

1414
# This description is used to generate tags and improve search results.
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
# * Write the description between the DESC delimiters below.
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

20-
s.swift_versions = ['4.2', '5.0', '5.1', '5.2']
20+
s.swift_versions = ['5.1', '5.2']
2121
s.description = <<-DESC
2222
Excel spreadsheet (XLSX) format support in pure Swift.
2323
DESC

Example/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- CoreXLSX (0.13.0):
2+
- CoreXLSX (0.14.0):
33
- XMLCoder (~> 0.11.1)
44
- ZIPFoundation (~> 0.9.11)
55
- XMLCoder (0.11.1)
@@ -18,10 +18,10 @@ EXTERNAL SOURCES:
1818
:path: "../"
1919

2020
SPEC CHECKSUMS:
21-
CoreXLSX: 6cc62592f76130f23e1b5c7d775b4bc47b099d78
21+
CoreXLSX: 341fab0a6e87ec6c3e0c7df0e91a346a79ad7503
2222
XMLCoder: c4638336674de7ba279cd23f2005817d69f538e0
2323
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197
2424

2525
PODFILE CHECKSUM: 1a2944acb934266f5ccb1e83dd0785389497d427
2626

27-
COCOAPODS: 1.9.1
27+
COCOAPODS: 1.10.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
176176
```swift
177177
dependencies: [
178178
.package(url: "https://github.com/CoreOffice/CoreXLSX.git",
179-
.upToNextMinor(from: "0.13.0"))
179+
.upToNextMinor(from: "0.14.0"))
180180
]
181181
```
182182

@@ -187,7 +187,7 @@ GUI](https://developer.apple.com/documentation/xcode/adding_package_dependencies
187187
### CocoaPods
188188

189189
CoreXLSX is available through [CocoaPods](https://cocoapods.org) on Apple's
190-
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.13.0'` to your
190+
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.14.0'` to your
191191
`Podfile` like shown here:
192192

193193
```ruby
@@ -196,7 +196,7 @@ source 'https://github.com/CocoaPods/Specs.git'
196196
# platform :ios, '9.0'
197197
use_frameworks!
198198
target '<Your Target Name>' do
199-
pod 'CoreXLSX', '~> 0.13.0'
199+
pod 'CoreXLSX', '~> 0.14.0'
200200
end
201201
```
202202

0 commit comments

Comments
 (0)