Skip to content

Commit d6faeb1

Browse files
committed
swift-identifiable-continuation
1 parent 532bf4f commit d6faeb1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Test
2121
run: swift test --skip-build --enable-code-coverage
2222
- name: Gather code coverage
23-
run: xcrun llvm-cov export -format="lcov" .build/debug/IdentifiableContinuationPackageTests.xctest/Contents/MacOS/IdentifiableContinuationPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
23+
run: xcrun llvm-cov export -format="lcov" .build/debug/swift-identifiable-continuationPackageTests.xctest/Contents/MacOS/swift-identifiable-continuationPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
2424
- name: Upload Coverage
2525
uses: codecov/codecov-action@v4
2626
with:

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import PackageDescription
44

55
let package = Package(
6-
name: "IdentifiableContinuation",
6+
name: "swift-identifiable-continuation",
77
platforms: [
88
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)
99
],

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import PackageDescription
44

55
let package = Package(
6-
name: "IdentifiableContinuation",
6+
name: "swift-identifiable-continuation",
77
platforms: [
88
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)
99
],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ IdentifiableContinuation can be installed by using Swift Package Manager.
1515
To install using Swift Package Manager, add this to the `dependencies:` section in your Package.swift file:
1616

1717
```swift
18-
.package(url: "https://github.com/swhitty/IdentifiableContinuation.git", .upToNextMajor(from: "0.4.0"))
18+
.package(url: "https://github.com/swhitty/swift-identifiable-continuation.git", .upToNextMajor(from: "0.5.0"))
1919
```
2020

2121
# Usage

0 commit comments

Comments
 (0)