From fdaf1f420df24185c892a6ddac81cea9b9507ed9 Mon Sep 17 00:00:00 2001 From: Wojciech Chojnacki Date: Mon, 2 Sep 2024 22:05:28 +0100 Subject: [PATCH] version 0.9.0 --- NotionSwift.podspec | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NotionSwift.podspec b/NotionSwift.podspec index 98d5bef..b675801 100644 --- a/NotionSwift.podspec +++ b/NotionSwift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'NotionSwift' - s.version = '0.8.0' + s.version = '0.9.0' s.summary = 'Unofficial Notion SDK for iOS & macOS.' s.homepage = 'https://github.com/chojnac/NotionSwift' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/README.md b/README.md index 0ff85d4..c6ba7c4 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ For more details and documentation please check [Notion Developer Portal](https: ### CocoaPods ```ruby -pod 'NotionSwift', '0.8.0' +pod 'NotionSwift', '0.9.0' ``` ### Swift Package Manager ```swift dependencies: [ - .package(url: "https://github.com/chojnac/NotionSwift.git", .upToNextMajor(from: "0.8.0")) + .package(url: "https://github.com/chojnac/NotionSwift.git", .upToNextMajor(from: "0.9.0")) ] ```