File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
38This is a bugfix release with changes to the model API that improve
49compatibility with files containing formulas and varied shared string formats.
Original file line number Diff line number Diff line change 88
99Pod ::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.
Original file line number Diff line number Diff line change 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;
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;
Original file line number Diff line number Diff line change @@ -126,22 +126,22 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
126126``` swift
127127dependencies: [
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
135135CoreXLSX 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
139139source ' https://github.com/CocoaPods/Specs.git'
140140# Uncomment the next line to define a global platform for your project
141141# platform :ios, '9.0'
142142use_frameworks!
143143target ' <Your Target Name>' do
144- pod ' CoreXLSX' , ' ~> 0.6.0 '
144+ pod ' CoreXLSX' , ' ~> 0.6.1 '
145145end
146146```
147147
You can’t perform that action at this time.
0 commit comments