Skip to content

Commit

Permalink
Bump version to 0.14.0, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Dec 9, 2020
1 parent fa5fcbb commit 7f5df3c
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 8 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# 0.14.0 (9 December 2020)

This release improves compatibility with different spreadsheet formats, simplifies cell font and
formatting APIs, and drops support for Carthage. Additionally, Xcode 11.3 on macOS is now the
oldest supported version for building CoreXLSX.

**Breaking changes:**

- Make `parseSharedStrings` return optional value ([#122](https://github.com/CoreOffice/CoreXLSX/pull/122)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Test with Xcode 12, drop Carthage and Xcode 10 support ([#140](https://github.com/CoreOffice/CoreXLSX/pull/140)) via [@MaxDesiatov](https://github.com/MaxDesiatov)

**Closed issues:**

- Unable to sort columns by `intValue` ([#137](https://github.com/CoreOffice/CoreXLSX/issues/137))
- Cannot initialize SchemaType from invalid String value ([#136](https://github.com/CoreOffice/CoreXLSX/issues/136))
- Odd cell.s value ([#134](https://github.com/CoreOffice/CoreXLSX/issues/134))
- 0.13.0 not available on Cocoapods ([#133](https://github.com/CoreOffice/CoreXLSX/issues/133))
- Unable to read xlsx file ([#130](https://github.com/CoreOffice/CoreXLSX/issues/130))
- Increase speed of parsing? ([#127](https://github.com/CoreOffice/CoreXLSX/issues/127))
- .xlsx File not opening with XLSXFile() ([#125](https://github.com/CoreOffice/CoreXLSX/issues/125))
- Getting Data From a specific Worksheet ([#124](https://github.com/CoreOffice/CoreXLSX/issues/124))
- ArchiveEntryNotFound error ([#121](https://github.com/CoreOffice/CoreXLSX/issues/121))
- Printing an empty cell? ([#118](https://github.com/CoreOffice/CoreXLSX/issues/118))
- Handling encrypted spreadsheets? ([#101](https://github.com/CoreOffice/CoreXLSX/issues/101))

**Merged pull requests:**

- Compare `ColumnReference` by `intValue` ([#139](https://github.com/CoreOffice/CoreXLSX/pull/139)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Add missing `SchemaType.webExtensionTaskPanes` ([#138](https://github.com/CoreOffice/CoreXLSX/pull/138)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Add `font(in:)` and `format(in:)` functions ([#135](https://github.com/CoreOffice/CoreXLSX/pull/135)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Test with Swift 5.3 for Linux ([#132](https://github.com/CoreOffice/CoreXLSX/pull/132)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Generate and publish docs with `swift-doc` ([#131](https://github.com/CoreOffice/CoreXLSX/pull/131)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Add “person” to the relationship types ([#126](https://github.com/CoreOffice/CoreXLSX/pull/126)) via [@texuf](https://github.com/texuf)
- Fix parsing root relationships worksheet paths ([#123](https://github.com/CoreOffice/CoreXLSX/pull/123)) via [@MaxDesiatov](https://github.com/MaxDesiatov)

# 0.13.0 (8 July 2020)

This is a bugfix release with breaking changes that make `count` property on `MergeCells` and all
Expand Down
4 changes: 2 additions & 2 deletions CoreXLSX.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'CoreXLSX'
s.version = '0.13.0'
s.version = '0.14.0'
s.summary = 'Excel spreadsheet (XLSX) format support in pure Swift'

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

s.swift_versions = ['4.2', '5.0', '5.1', '5.2']
s.swift_versions = ['5.1', '5.2']
s.description = <<-DESC
Excel spreadsheet (XLSX) format support in pure Swift.
DESC
Expand Down
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- CoreXLSX (0.13.0):
- CoreXLSX (0.14.0):
- XMLCoder (~> 0.11.1)
- ZIPFoundation (~> 0.9.11)
- XMLCoder (0.11.1)
Expand All @@ -18,10 +18,10 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
CoreXLSX: 6cc62592f76130f23e1b5c7d775b4bc47b099d78
CoreXLSX: 341fab0a6e87ec6c3e0c7df0e91a346a79ad7503
XMLCoder: c4638336674de7ba279cd23f2005817d69f538e0
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197

PODFILE CHECKSUM: 1a2944acb934266f5ccb1e83dd0785389497d427

COCOAPODS: 1.9.1
COCOAPODS: 1.10.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,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.13.0"))
.upToNextMinor(from: "0.14.0"))
]
```

Expand All @@ -187,7 +187,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.13.0'` to your
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.14.0'` to your
`Podfile` like shown here:

```ruby
Expand All @@ -196,7 +196,7 @@ source 'https://github.com/CocoaPods/Specs.git'
# platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'CoreXLSX', '~> 0.13.0'
pod 'CoreXLSX', '~> 0.14.0'
end
```

Expand Down

0 comments on commit 7f5df3c

Please sign in to comment.