Skip to content

Commit 033ed84

Browse files
committed
Bump version to 0.6.0
1 parent ec8d671 commit 033ed84

4 files changed

Lines changed: 40 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
# 0.6.0 (April 18, 2019)
2+
3+
This is a bugfix release with changes to the model API that improve
4+
compatibility with files containing formulas and varied shared string formats.
5+
6+
Specifically:
7+
8+
* new `struct Formula` added with a corresponding property on `struct Cell`
9+
* property `color` on `struct Properties` became optional
10+
* `properties` on `struct RichText` became optional
11+
* new `chartsheet` case added to `enum Relationship`
12+
* `richText` on `struct SharedStrings` became an array, not optional
13+
14+
## Closed issues
15+
16+
- Error Domain=NSCocoaErrorDomain Code=4865 "Expected String but found null
17+
instead." [\#59](https://github.com/MaxDesiatov/CoreXLSX/issues/59)
18+
- Importing XLSX file [\#56](https://github.com/MaxDesiatov/CoreXLSX/issues/56)
19+
- Error ParseCellContent
20+
[\#51](https://github.com/MaxDesiatov/CoreXLSX/issues/51)
21+
- error `parseWorksheet`
22+
[\#50](https://github.com/MaxDesiatov/CoreXLSX/issues/50)
23+
- Couldn't find end of Start Tag c
24+
[\#37](https://github.com/MaxDesiatov/CoreXLSX/issues/37)
25+
26+
## Merged pull requests
27+
28+
- Add `Formula` struct, fix other model types
29+
[\#61](https://github.com/MaxDesiatov/CoreXLSX/pull/61)
30+
([MaxDesiatov](https://github.com/MaxDesiatov))
31+
- Bump `XMLCoder` dependency to 0.5, fix `SharedStrings`
32+
[\#60](https://github.com/MaxDesiatov/CoreXLSX/pull/60)
33+
([MaxDesiatov](https://github.com/MaxDesiatov))
34+
135
# 0.5.0 (April 18, 2019)
236

337
This is a release with API additions and bug fixes.

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.5.0'
11+
s.version = '0.6.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
@@ -1207,7 +1207,7 @@
12071207
CLANG_ENABLE_OBJC_ARC = YES;
12081208
COMBINE_HIDPI_IMAGES = YES;
12091209
COPY_PHASE_STRIP = NO;
1210-
CURRENT_PROJECT_VERSION = 0.5.0;
1210+
CURRENT_PROJECT_VERSION = 0.6.0;
12111211
DEBUG_INFORMATION_FORMAT = dwarf;
12121212
DYLIB_INSTALL_NAME_BASE = "@rpath";
12131213
ENABLE_NS_ASSERTIONS = YES;
@@ -1234,7 +1234,7 @@
12341234
CLANG_ENABLE_OBJC_ARC = YES;
12351235
COMBINE_HIDPI_IMAGES = YES;
12361236
COPY_PHASE_STRIP = YES;
1237-
CURRENT_PROJECT_VERSION = 0.5.0;
1237+
CURRENT_PROJECT_VERSION = 0.6.0;
12381238
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
12391239
DYLIB_INSTALL_NAME_BASE = "@rpath";
12401240
GCC_OPTIMIZATION_LEVEL = s;

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,22 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
126126
```swift
127127
dependencies: [
128128
.package(url: "https://github.com/MaxDesiatov/CoreXLSX.git",
129-
.upToNextMajor(from: "0.5.0"))
129+
.upToNextMajor(from: "0.6.0"))
130130
]
131131
```
132132

133133
### CocoaPods
134134

135135
CoreXLSX is available through [CocoaPods](https://cocoapods.org). To install
136-
it, simply add `pod 'CoreXLSX', '~> 0.5.0'` to your `Podfile` like shown here:
136+
it, simply add `pod 'CoreXLSX', '~> 0.6.0'` to your `Podfile` like shown here:
137137

138138
```ruby
139139
source 'https://github.com/CocoaPods/Specs.git'
140140
# Uncomment the next line to define a global platform for your project
141141
# platform :ios, '9.0'
142142
use_frameworks!
143143
target '<Your Target Name>' do
144-
pod 'CoreXLSX', '~> 0.5.0'
144+
pod 'CoreXLSX', '~> 0.6.0'
145145
end
146146
```
147147

0 commit comments

Comments
 (0)