Skip to content

Commit

Permalink
version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chojnac committed Apr 17, 2022
1 parent 1e74397 commit 97919fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions NotionSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'NotionSwift'
s.version = '0.5.1'
s.version = '0.6.0'
s.summary = 'Unofficial Notion SDK for iOS & macOS.'
s.homepage = 'https://github.com/chojnac/NotionSwift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand All @@ -11,10 +11,10 @@ Pod::Spec.new do |s|
s.swift_version = '5.3'
s.source_files = ['Sources/NotionSwift/**/*']

s.ios.deployment_target = '9.0'
s.ios.deployment_target = '11.0'
s.ios.frameworks = "UIKit"

s.osx.deployment_target = '10.10'
s.osx.deployment_target = '10.13'
s.osx.frameworks = "AppKit"

s.test_spec 'Tests' do |test_spec|
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "NotionSwift",
platforms: [
.macOS(.v10_10),
.macOS(.v10_13),
.iOS(.v11),
],
products: [
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ For more details and documentation please check [Notion Developer Portal](https:
### CocoaPods

```ruby
pod 'NotionSwift', '0.5.1'
pod 'NotionSwift', '0.6.0'
```

### Swift Package Manager

```swift
dependencies: [
.package(url: "https://github.com/chojnac/NotionSwift.git", .upToNextMajor(from: "0.5.1"))
.package(url: "https://github.com/chojnac/NotionSwift.git", .upToNextMajor(from: "0.6.0"))
]
```

Expand Down

0 comments on commit 97919fb

Please sign in to comment.