Skip to content

Commit 102b917

Browse files
committed
Bump version to 0.6.1
1 parent e867cfb commit 102b917

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 0.6.0 (April 18, 2019)
1+
# 0.6.1 (May 9, 2019)
2+
3+
Bugfix release that adds `case externalLink` to `Relationship.SchemaType`
4+
improving .xlsx compatibility.
5+
6+
# 0.6.0 (May 2, 2019)
27

38
This is a bugfix release with changes to the model API that improve
49
compatibility with files containing formulas and varied shared string formats.

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.6.0'
11+
s.version = '0.6.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
@@ -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.6.0;
1210+
CURRENT_PROJECT_VERSION = 0.6.1;
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.6.0;
1237+
CURRENT_PROJECT_VERSION = 0.6.1;
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.6.0"))
129+
.upToNextMajor(from: "0.6.1"))
130130
]
131131
```
132132

133133
### CocoaPods
134134

135135
CoreXLSX is available through [CocoaPods](https://cocoapods.org). To install
136-
it, simply add `pod 'CoreXLSX', '~> 0.6.0'` to your `Podfile` like shown here:
136+
it, simply add `pod 'CoreXLSX', '~> 0.6.1'` 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.6.0'
144+
pod 'CoreXLSX', '~> 0.6.1'
145145
end
146146
```
147147

0 commit comments

Comments
 (0)