Skip to content
This repository has been archived by the owner on Nov 7, 2021. It is now read-only.

Commit

Permalink
[6.1.0] release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Apr 18, 2020
1 parent aeaea90 commit db34212
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Expand Up @@ -4,12 +4,21 @@ The changelog for `PresenterKit`. Also see the [releases](https://github.com/jes

--------------------------------------

NEXT
----
6.1.0
-----

This release closes the [6.1.0 milestone](https://github.com/jessesquires/PresenterKit/milestone/9?closed=1).

### New

- Added a new custom presentation controller, `HalfModalPresentationController`
- Support for Swift Package Manager

### Changed

- Swift 5.2
- Upgrade to Swift 5.2
- Update to Xcode 11.4
- Upgrade SwiftLint
- Switch to GH Actions

6.0.0
Expand Down
4 changes: 2 additions & 2 deletions PresenterKit.podspec
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = 'PresenterKit'
s.version = '6.0.0'
s.version = '6.1.0'
s.license = 'MIT'

s.summary = 'Swifty view controller presentation for iOS'
s.summary = 'Custom presenters and better view controller presentation for iOS'
s.homepage = 'https://github.com/jessesquires/PresenterKit'
s.documentation_url = 'https://jessesquires.github.io/PresenterKit'
s.social_media_url = 'https://twitter.com/jesse_squires'
Expand Down
4 changes: 2 additions & 2 deletions PresenterKit.xcodeproj/project.pbxproj
Expand Up @@ -382,7 +382,7 @@
INFOPLIST_FILE = Sources/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 6.0.0;
MARKETING_VERSION = 6.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.hexedbits.PresenterKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -403,7 +403,7 @@
INFOPLIST_FILE = Sources/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 6.0.0;
MARKETING_VERSION = 6.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.hexedbits.PresenterKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -14,7 +14,7 @@
#### [CocoaPods](https://cocoapods.org)

````ruby
pod 'PresenterKit', '~> 6.0.0'
pod 'PresenterKit', '~> 6.1.0'

# develop branch
pod 'PresenterKit', :git => 'https://github.com/jessesquires/PresenterKit.git', :branch => 'develop'
Expand All @@ -26,7 +26,7 @@ Add `PresenterKit` to the `dependencies` value of your `Package.swift`.

```swift
dependencies: [
.package(url: "https://github.com/jessesquires/PresenterKit.git", from: "6.0.0")
.package(url: "https://github.com/jessesquires/PresenterKit.git", from: "6.1.0")
]
```

Expand Down

0 comments on commit db34212

Please sign in to comment.