Skip to content

Commit ea2d616

Browse files
committed
Bump version to 1.1.0
1 parent 941c370 commit ea2d616

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Add it as a dependency within your `Package.swift` manifest:
159159

160160
```swift
161161
dependencies: [
162-
.package(url: "https://github.com/paololeonardi/WaterfallGrid.git", from: "1.0.0")
162+
.package(url: "https://github.com/paololeonardi/WaterfallGrid.git", from: "1.1.0")
163163
]
164164
```
165165

@@ -168,7 +168,7 @@ dependencies: [
168168
You can install `WaterfallGrid` via CocoaPods by adding the following line to your `Podfile`:
169169

170170
```ruby
171-
pod 'WaterfallGrid', '~> 1.0.0'
171+
pod 'WaterfallGrid', '~> 1.1.0'
172172
```
173173

174174
Run the `pod install` command to download the library

WaterfallGrid.podspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "WaterfallGrid"
3-
spec.version = "1.0.1"
3+
spec.version = "1.1.0"
44
spec.summary = "A waterfall grid layout view for SwiftUI."
55
spec.homepage = "https://github.com/paololeonardi/WaterfallGrid"
66

@@ -12,9 +12,10 @@ Pod::Spec.new do |spec|
1212
spec.ios.deployment_target = "13.0"
1313
spec.osx.deployment_target = "10.15"
1414
spec.watchos.deployment_target = "6.0"
15+
spec.visionos.deployment_target = "1.0"
1516
spec.tvos.deployment_target = "13.0"
1617

17-
spec.swift_version = '5.1'
18+
spec.swift_version = '5.9'
1819

1920
spec.source = { :git => "https://github.com/paololeonardi/WaterfallGrid.git", :tag => "#{spec.version}" }
2021

0 commit comments

Comments
 (0)