Skip to content

Commit

Permalink
feat: Bump version to 1.5.11
Browse files Browse the repository at this point in the history
  • Loading branch information
liam-i committed May 9, 2024
1 parent 6601be8 commit aa5f0c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ This is a lightweight and easy-to-use HUD designed to display the progress and s
If you are using the [Swift Package Manager](https://www.swift.org/documentation/package-manager), add a dependency to your `Package.swift` file and import the HUD library into the desired targets:
```swift
dependencies: [
.package(url: "https://github.com/liam-i/FlyHUD.git", from: "1.5.10")
.package(url: "https://github.com/liam-i/FlyHUD.git", from: "1.5.11")
],
targets: [
.target(
Expand All @@ -56,7 +56,7 @@ If you are using Xcode, then you should:

- File > Swift Packages > Add Package Dependency
- Add `https://github.com/liam-i/FlyHUD.git`
- Select "Up to Next Minor" with "1.5.10"
- Select "Up to Next Minor" with "1.5.11"

> [!TIP]
> For detailed tutorials, see: [Apple Docs](https://developer.apple.com/documentation/xcode/adding-package-dependencies-to-your-app)
Expand All @@ -74,16 +74,16 @@ use_frameworks!

target 'MyApp' do
# Use the FlyHUD, FlyIndicatorHUD and FlyProgressHUD components.
pod 'FlyHUD', '~> 1.5.10'
pod 'FlyHUD', '~> 1.5.11'

# Or, just use the FlyHUD component.
pod 'FlyHUD', '~> 1.5.10', :subspecs => ['FlyHUD']
pod 'FlyHUD', '~> 1.5.11', :subspecs => ['FlyHUD']

# Or, just use the FlyHUD and FlyIndicatorHUD components.
pod 'FlyHUD', '~> 1.5.10', :subspecs => ['FlyIndicatorHUD']
pod 'FlyHUD', '~> 1.5.11', :subspecs => ['FlyIndicatorHUD']

# Or, just use the FlyHUD and FlyProgressHUD components.
pod 'FlyHUD', '~> 1.5.10', :subspecs => ['FlyProgressHUD']
pod 'FlyHUD', '~> 1.5.11', :subspecs => ['FlyProgressHUD']
end
```

Expand All @@ -97,7 +97,7 @@ And run `pod install`.
If you're using [Carthage](https://github.com/Carthage/Carthage), add this to your `Cartfile`:

```ruby
github "liam-i/FlyHUD" ~> 1.5.10
github "liam-i/FlyHUD" ~> 1.5.11
```

And run `carthage update --platform iOS --use-xcframeworks`.
Expand Down
14 changes: 7 additions & 7 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

```swift
dependencies: [
.package(url: "https://github.com/liam-i/FlyHUD.git", from: "1.5.10")
.package(url: "https://github.com/liam-i/FlyHUD.git", from: "1.5.11")
],
targets: [
.target(
Expand All @@ -57,7 +57,7 @@ targets: [

- File > Swift Packages > Add Package Dependency
- Add `https://github.com/liam-i/FlyHUD.git`
- Select "Up to Next Minor" with "1.5.10"
- Select "Up to Next Minor" with "1.5.11"

> [!TIP]
> 相关详细教程,请查看:[Apple Docs](https://developer.apple.com/documentation/xcode/adding-package-dependencies-to-your-app)
Expand All @@ -75,16 +75,16 @@ use_frameworks!

target 'MyApp' do
# 使用 FlyHUD、FlyIndicatorHUD 和 FlyProgressHUD 组件。
pod 'FlyHUD', '~> 1.5.10'
pod 'FlyHUD', '~> 1.5.11'

# 或者,只使用 FlyHUD 组件。
pod 'FlyHUD', '~> 1.5.10', :subspecs => ['FlyHUD']
pod 'FlyHUD', '~> 1.5.11', :subspecs => ['FlyHUD']

# 或者,只使用 FlyHUD 和 FlyIndicatorHUD 组件。
pod 'FlyHUD', '~> 1.5.10', :subspecs => ['FlyIndicatorHUD']
pod 'FlyHUD', '~> 1.5.11', :subspecs => ['FlyIndicatorHUD']

# 或者,只使用 FlyHUD 和 FlyProgressHUD 组件。
pod 'FlyHUD', '~> 1.5.10', :subspecs => ['FlyProgressHUD']
pod 'FlyHUD', '~> 1.5.11', :subspecs => ['FlyProgressHUD']
end
```

Expand All @@ -98,7 +98,7 @@ end
如果你使用 [Carthage](https://github.com/Carthage/Carthage), 可将以下内容添加到你的 `Cartfile` 中:

```ruby
github "liam-i/FlyHUD" ~> 1.5.10
github "liam-i/FlyHUD" ~> 1.5.11
```

并运行 `carthage update --platform iOS --use-xcframeworks`
Expand Down

0 comments on commit aa5f0c8

Please sign in to comment.