From ea2d616b3e6436384a54806ab30c8d0ac5dd8801 Mon Sep 17 00:00:00 2001 From: Paolo Leonardi Date: Wed, 24 Jul 2024 01:34:05 +0100 Subject: [PATCH] Bump version to 1.1.0 --- README.md | 4 ++-- WaterfallGrid.podspec | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f8f622a..242952f 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ Add it as a dependency within your `Package.swift` manifest: ```swift dependencies: [ - .package(url: "https://github.com/paololeonardi/WaterfallGrid.git", from: "1.0.0") + .package(url: "https://github.com/paololeonardi/WaterfallGrid.git", from: "1.1.0") ] ``` @@ -168,7 +168,7 @@ dependencies: [ You can install `WaterfallGrid` via CocoaPods by adding the following line to your `Podfile`: ```ruby -pod 'WaterfallGrid', '~> 1.0.0' +pod 'WaterfallGrid', '~> 1.1.0' ``` Run the `pod install` command to download the library diff --git a/WaterfallGrid.podspec b/WaterfallGrid.podspec index 72b7b5b..b3cafa7 100644 --- a/WaterfallGrid.podspec +++ b/WaterfallGrid.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "WaterfallGrid" - spec.version = "1.0.1" + spec.version = "1.1.0" spec.summary = "A waterfall grid layout view for SwiftUI." spec.homepage = "https://github.com/paololeonardi/WaterfallGrid" @@ -12,9 +12,10 @@ Pod::Spec.new do |spec| spec.ios.deployment_target = "13.0" spec.osx.deployment_target = "10.15" spec.watchos.deployment_target = "6.0" + spec.visionos.deployment_target = "1.0" spec.tvos.deployment_target = "13.0" - spec.swift_version = '5.1' + spec.swift_version = '5.9' spec.source = { :git => "https://github.com/paololeonardi/WaterfallGrid.git", :tag => "#{spec.version}" }