Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "WebRTC",
url: "https://github.com/stasel/WebRTC/releases/download/140.0.0/WebRTC-M140.xcframework.zip",
checksum: "0d61faf67dd145545bf8a0017bdcdbe7a9a1f3a96cce0d501e526655711d98d2"
url: "https://github.com/stasel/WebRTC/releases/download/141.0.0/WebRTC-M141.xcframework.zip",
checksum: "e3b9bc1aed7a6f3f747a62567680ac7837bdbb74d1fae8f0f543131bc1bf8a5f"
),
]
)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Xcode has a built-in support for Swift package manager. You can easily add the p
Or, you can add the following dependency to your `Package.swift` file:
```swift
dependencies: [
.package(url: "https://github.com/stasel/WebRTC.git", .upToNextMajor("140.0.0"))
.package(url: "https://github.com/stasel/WebRTC.git", .upToNextMajor("141.0.0"))
]
```

Expand Down
4 changes: 2 additions & 2 deletions WebRTC-lib.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "WebRTC-lib"
spec.version = "140.0.0"
spec.version = "141.0.0"
spec.summary = "Unofficial distribution of WebRTC framework binaries for iOS. "
spec.description = <<-DESC
This pod contains unofficial distribution of WebRTC framework binaries for iOS.
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |spec|
spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '10.11'

spec.source = { :http => "https://github.com/stasel/WebRTC/releases/download/140.0.0/WebRTC-M140.xcframework.zip" }
spec.source = { :http => "https://github.com/stasel/WebRTC/releases/download/141.0.0/WebRTC-M141.xcframework.zip" }
spec.vendored_frameworks = "WebRTC.xcframework"

end
1 change: 1 addition & 0 deletions WebRTC.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"138.0.0": "https://github.com/stasel/WebRTC/releases/download/138.0.0/WebRTC-M138.xcframework.zip",
"139.0.0": "https://github.com/stasel/WebRTC/releases/download/139.0.0/WebRTC-M139.xcframework.zip",
"140.0.0": "https://github.com/stasel/WebRTC/releases/download/140.0.0/WebRTC-M140.xcframework.zip",
"141.0.0": "https://github.com/stasel/WebRTC/releases/download/141.0.0/WebRTC-M141.xcframework.zip",
"88.0.0": "https://github.com/stasel/WebRTC/releases/download/88.0.0/WebRTC-M88.xcframework.zip",
"89.0.0": "https://github.com/stasel/WebRTC/releases/download/89.0.0/WebRTC-M89.xcframework.zip",
"90.0.0": "https://github.com/stasel/WebRTC/releases/download/90.0.0/WebRTC-M90.xcframework.zip",
Expand Down