Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed May 2, 2019
1 parent ec8d671 commit 033ed84
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 6 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
# 0.6.0 (April 18, 2019)

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

Specifically:

* new `struct Formula` added with a corresponding property on `struct Cell`
* property `color` on `struct Properties` became optional
* `properties` on `struct RichText` became optional
* new `chartsheet` case added to `enum Relationship`
* `richText` on `struct SharedStrings` became an array, not optional

## Closed issues

- Error Domain=NSCocoaErrorDomain Code=4865 "Expected String but found null
instead." [\#59](https://github.com/MaxDesiatov/CoreXLSX/issues/59)
- Importing XLSX file [\#56](https://github.com/MaxDesiatov/CoreXLSX/issues/56)
- Error ParseCellContent
[\#51](https://github.com/MaxDesiatov/CoreXLSX/issues/51)
- error `parseWorksheet`
[\#50](https://github.com/MaxDesiatov/CoreXLSX/issues/50)
- Couldn't find end of Start Tag c
[\#37](https://github.com/MaxDesiatov/CoreXLSX/issues/37)

## Merged pull requests

- Add `Formula` struct, fix other model types
[\#61](https://github.com/MaxDesiatov/CoreXLSX/pull/61)
([MaxDesiatov](https://github.com/MaxDesiatov))
- Bump `XMLCoder` dependency to 0.5, fix `SharedStrings`
[\#60](https://github.com/MaxDesiatov/CoreXLSX/pull/60)
([MaxDesiatov](https://github.com/MaxDesiatov))

# 0.5.0 (April 18, 2019)

This is a release with API additions and bug fixes.
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.5.0'
s.version = '0.6.0'
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.5.0;
CURRENT_PROJECT_VERSION = 0.6.0;
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.5.0;
CURRENT_PROJECT_VERSION = 0.6.0;
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.5.0"))
.upToNextMajor(from: "0.6.0"))
]
```

### CocoaPods

CoreXLSX is available through [CocoaPods](https://cocoapods.org). To install
it, simply add `pod 'CoreXLSX', '~> 0.5.0'` to your `Podfile` like shown here:
it, simply add `pod 'CoreXLSX', '~> 0.6.0'` 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.5.0'
pod 'CoreXLSX', '~> 0.6.0'
end
```

Expand Down

0 comments on commit 033ed84

Please sign in to comment.