Skip to content

Commit 1f5b7bf

Browse files
committed
Bump version to 0.13.0
1 parent 035e9d8 commit 1f5b7bf

5 files changed

Lines changed: 27 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 0.13.0 (8 July 2020)
2+
3+
This is a bugfix release with breaking changes that make `count` property on `MergeCells` and all
4+
properties on `Workbook.View` optional. Many thanks to
5+
[@Ethan-Chew](https://github.com/Ethan-Chew) and
6+
[@robgtsoftware](https://github.com/robgtsoftware) for reporting these issues!
7+
8+
**Closed issues:**
9+
10+
- Printing Strings in a Column ([#116](https://github.com/CoreOffice/CoreXLSX/issues/116))
11+
- File.parseWorksheet(at: path) dies ([#94](https://github.com/CoreOffice/CoreXLSX/issues/94))
12+
13+
**Merged pull requests:**
14+
15+
- Make Workbook.View properties optional ([#120](https://github.com/CoreOffice/CoreXLSX/pull/120))
16+
via [@MaxDesiatov](https://github.com/MaxDesiatov)
17+
- Make count optional in MergeCells ([#119](https://github.com/CoreOffice/CoreXLSX/pull/119)) via
18+
[@MaxDesiatov](https://github.com/MaxDesiatov)
19+
120
# 0.12.0 (26 June 2020)
221

322
The is a bugfix release with a breaking change, it makes `size` and `font` properties

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.12.0'
11+
s.version = '0.13.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.

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.12.0;
1132+
CURRENT_PROJECT_VERSION = 0.13.0;
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.12.0;
1159+
CURRENT_PROJECT_VERSION = 0.13.0;
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.12.0):
2+
- CoreXLSX (0.13.0):
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.12.0"))
164+
.upToNextMinor(from: "0.13.0"))
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.12.0'` to your
175+
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.13.0'` 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.12.0'
184+
pod 'CoreXLSX', '~> 0.13.0'
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.12.0
205+
github "CoreOffice/CoreXLSX" ~> 0.13.0
206206
```
207207

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

0 commit comments

Comments
 (0)