Skip to content

Commit

Permalink
Bump version to 0.11.1, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Jun 12, 2020
1 parent 90f00c1 commit 160544b
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 0.11.1 (12 June 2020)

This is a bugfix release that resolves an issue with parsing cells that contain time
values. Thanks to [@mb812](https://github.com/mb812) for reporting it!

**Closed issues:**

- Error parsing cells with Time value ([#114](https://github.com/CoreOffice/CoreXLSX/issues/114))
- `file.parseWorksheetPathsAndNames()` wanna `workbook: <#Workbook#>` ([#113](https://github.com/CoreOffice/CoreXLSX/issues/113))
- XLSXFile not initialising when passing document directory path ([#108](https://github.com/CoreOffice/CoreXLSX/issues/108))

**Merged pull requests:**

- Fix time values returned by Cell.dateValue ([#115](https://github.com/CoreOffice/CoreXLSX/pull/115)) via [@MaxDesiatov](https://github.com/MaxDesiatov)

# 0.11.0 (30 May 2020)

This is a feature release that enables compatibility with [CryptoOffice](https://github.com/CoreOffice/CryptoOffice) for decrypting spreadsheets. Additionally, with 0.11.0 you can easily get worksheet names with a new `parseWorksheetPathsAndNames` function on `XLSXFile` and get rich text values from cells with a new `richStringValue` function on `Cell`.
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.0'
s.version = '0.11.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 @@ -1129,7 +1129,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.11.0;
CURRENT_PROJECT_VERSION = 0.11.1;
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.0;
CURRENT_PROJECT_VERSION = 0.11.1;
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.11.0):
- CoreXLSX (0.11.1):
- 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.11.0"))
.upToNextMinor(from: "0.11.1"))
]
```

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.0'` to your
platforms. To install it, simply add `pod 'CoreXLSX', '~> 0.11.1'` 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.0'
pod 'CoreXLSX', '~> 0.11.1'
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.0
github "CoreOffice/CoreXLSX" ~> 0.11.1
```

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

0 comments on commit 160544b

Please sign in to comment.