Skip to content

Commit

Permalink
Bump version to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Jul 8, 2020
1 parent 035e9d8 commit 1f5b7bf
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 8 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# 0.13.0 (8 July 2020)

This is a bugfix release with breaking changes that make `count` property on `MergeCells` and all
properties on `Workbook.View` optional. Many thanks to
[@Ethan-Chew](https://github.com/Ethan-Chew) and
[@robgtsoftware](https://github.com/robgtsoftware) for reporting these issues!

**Closed issues:**

- Printing Strings in a Column ([#116](https://github.com/CoreOffice/CoreXLSX/issues/116))
- File.parseWorksheet(at: path) dies ([#94](https://github.com/CoreOffice/CoreXLSX/issues/94))

**Merged pull requests:**

- Make Workbook.View properties optional ([#120](https://github.com/CoreOffice/CoreXLSX/pull/120))
via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Make count optional in MergeCells ([#119](https://github.com/CoreOffice/CoreXLSX/pull/119)) via
[@MaxDesiatov](https://github.com/MaxDesiatov)

# 0.12.0 (26 June 2020)

The is a bugfix release with a breaking change, it makes `size` and `font` properties
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.12.0'
s.version = '0.13.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 @@ -1129,7 +1129,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.12.0;
CURRENT_PROJECT_VERSION = 0.13.0;
DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_NS_ASSERTIONS = YES;
Expand All @@ -1156,7 +1156,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 0.12.0;
CURRENT_PROJECT_VERSION = 0.13.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_OPTIMIZATION_LEVEL = s;
Expand Down
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- CoreXLSX (0.12.0):
- CoreXLSX (0.13.0):
- XMLCoder (~> 0.11.1)
- ZIPFoundation (~> 0.9.11)
- XMLCoder (0.11.1)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
```swift
dependencies: [
.package(url: "https://github.com/CoreOffice/CoreXLSX.git",
.upToNextMinor(from: "0.12.0"))
.upToNextMinor(from: "0.13.0"))
]
```

Expand All @@ -172,7 +172,7 @@ GUI](https://developer.apple.com/documentation/xcode/adding_package_dependencies
### CocoaPods

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

```ruby
Expand All @@ -181,7 +181,7 @@ source 'https://github.com/CocoaPods/Specs.git'
# platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'CoreXLSX', '~> 0.12.0'
pod 'CoreXLSX', '~> 0.13.0'
end
```

Expand All @@ -202,7 +202,7 @@ $ brew install carthage
Inside of your `Cartfile`, add GitHub path to `CoreXLSX` and its latest version:

```ogdl
github "CoreOffice/CoreXLSX" ~> 0.12.0
github "CoreOffice/CoreXLSX" ~> 0.13.0
```

Then, run the following command to build the framework:
Expand Down

0 comments on commit 1f5b7bf

Please sign in to comment.