Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
417-72KI committed Oct 9, 2023
1 parent ed3aa83 commit 510087e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT_NAME = StubNetworkKit

ver = 0.2.1
ver = 0.3.0

.SILENT:

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import PackageDescription

let isRelease = false
let isRelease = true

let isObjcAvailable: Bool = {
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
### Swift Package Manager(recommended)

```swift:Package.swift
.package(url: "https://github.com/417-72KI/StubNetworkKit.git", from: "0.2.1"),
.package(url: "https://github.com/417-72KI/StubNetworkKit.git", from: "0.3.0"),
```

### CocoaPods
Expand Down
10 changes: 5 additions & 5 deletions StubNetworkKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ Pod::Spec.new do |spec|
spec.author = { "417-72KI" => "417.72ki@gmail.com" }
spec.social_media_url = "https://twitter.com/417_72ki"

spec.ios.deployment_target = "14.0"
spec.osx.deployment_target = "11.0"
spec.watchos.deployment_target = "6.0"
spec.tvos.deployment_target = "14.0"
spec.ios.deployment_target = "15.0"
spec.osx.deployment_target = "12.0"
spec.watchos.deployment_target = "8.0"
spec.tvos.deployment_target = "15.0"

spec.source = { :git => "https://github.com/417-72KI/#{spec.name}.git", :tag => "#{spec.version}" }
spec.source_files = 'Sources/StubNetworkKit/**/*.swift'
spec.swift_versions = ['5.6', '5.7', '5.8']
spec.swift_versions = ['5.7', '5.8', '5.9']

spec.frameworks = 'Foundation'
end

0 comments on commit 510087e

Please sign in to comment.