diff --git a/README.md b/README.md index 1d288b28..8e9df254 100644 --- a/README.md +++ b/README.md @@ -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( @@ -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) @@ -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 ``` @@ -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`. diff --git a/README_CN.md b/README_CN.md index e5ac2cf8..20a788a3 100644 --- a/README_CN.md +++ b/README_CN.md @@ -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( @@ -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) @@ -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 ``` @@ -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`。