Skip to content

Commit

Permalink
Bump version to 0.12.0, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Jun 26, 2020
1 parent 14917ec commit da9a091
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.12.0 (26 June 2020)

The is a bugfix release with a breaking change, it makes `size` and `font` properties
optional on the `RichText.Properties` type to improve compatibility with certain spreadsheets.
Thanks to [@Ethan-Chew](https://github.com/Ethan-Chew) for reporting this in
[#116](https://github.com/CoreOffice/CoreXLSX/issues/116).

# 0.11.1 (12 June 2020)

This is a bugfix release that resolves an issue with parsing cells that contain time
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.11.1'
s.version = '0.12.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.11.1;
CURRENT_PROJECT_VERSION = 0.12.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.11.1;
CURRENT_PROJECT_VERSION = 0.12.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_OPTIMIZATION_LEVEL = s;
Expand Down
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- CoreXLSX (0.11.1):
- CoreXLSX (0.12.0):
- XMLCoder (~> 0.11.1)
- ZIPFoundation (~> 0.9.11)
- XMLCoder (0.11.1)
Expand All @@ -18,10 +18,10 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
CoreXLSX: d81176da72edfd69a9df6f107a78bd0335b8f292
CoreXLSX: 6cc62592f76130f23e1b5c7d775b4bc47b099d78
XMLCoder: c4638336674de7ba279cd23f2005817d69f538e0
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197

PODFILE CHECKSUM: 4b59cda9563eaa9d39027ba3749963cf8b4676e7
PODFILE CHECKSUM: 1a2944acb934266f5ccb1e83dd0785389497d427

COCOAPODS: 1.9.1
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.11.1"))
.upToNextMinor(from: "0.12.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.11.1'` to your
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.12.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.11.1'
pod 'CoreXLSX', '~> 0.12.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.11.1
github "CoreOffice/CoreXLSX" ~> 0.12.0
```

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

0 comments on commit da9a091

Please sign in to comment.