Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paololeonardi committed Jul 24, 2024
1 parent 941c370 commit ea2d616
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
]
```

Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions WaterfallGrid.podspec
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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}" }

Expand Down

0 comments on commit ea2d616

Please sign in to comment.