Skip to content

Commit

Permalink
Bump version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed May 9, 2019
1 parent e867cfb commit 102b917
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# 0.6.0 (April 18, 2019)
# 0.6.1 (May 9, 2019)

Bugfix release that adds `case externalLink` to `Relationship.SchemaType`
improving .xlsx compatibility.

# 0.6.0 (May 2, 2019)

This is a bugfix release with changes to the model API that improve
compatibility with files containing formulas and varied shared string formats.
Expand Down
2 changes: 1 addition & 1 deletion 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.6.0'
s.version = '0.6.1'
s.summary = 'Excel spreadsheet (XLSX) format support in pure Swift'

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 2 additions & 2 deletions CoreXLSX.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.6.0;
CURRENT_PROJECT_VERSION = 0.6.1;
DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_NS_ASSERTIONS = YES;
Expand All @@ -1234,7 +1234,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 0.6.0;
CURRENT_PROJECT_VERSION = 0.6.1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_OPTIMIZATION_LEVEL = s;
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,22 +126,22 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
```swift
dependencies: [
.package(url: "https://github.com/MaxDesiatov/CoreXLSX.git",
.upToNextMajor(from: "0.6.0"))
.upToNextMajor(from: "0.6.1"))
]
```

### CocoaPods

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

```ruby
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'CoreXLSX', '~> 0.6.0'
pod 'CoreXLSX', '~> 0.6.1'
end
```

Expand Down

0 comments on commit 102b917

Please sign in to comment.