Skip to content

Commit 85b71b8

Browse files
authored
Update XcodeSelectiveTesting version in README
Updated version references for XcodeSelectiveTesting from 0.12.7 to 0.13.1 in the README.
1 parent 74d9f29 commit 85b71b8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Run only tests relevant to the changeset.
44

5-
[Watch Video](https://www.youtube.com/watch?v=0JOX1czraGA)
5+
[Watch my talk from Swift Connection 2025](https://www.youtube.com/watch?v=U1fJQRbq-TY)
66

77
[![Swift](https://github.com/mikeger/SelectiveTesting/actions/workflows/test.yml/badge.svg)](https://github.com/mikeger/SelectiveTesting/actions/workflows/test.yml)
88

@@ -48,15 +48,15 @@ Alternatively, you can use a prebuilt binary release of the tool distributed und
4848

4949
### Using Swift Package Manager
5050

51-
Add `.package(url: "git@github.com:mikeger/XcodeSelectiveTesting", .upToNextMajor(from: "0.12.7"))` to your `Package.swift`'s `dependencies` section.
51+
Add `.package(url: "git@github.com:mikeger/XcodeSelectiveTesting", .upToNextMajor(from: "0.13.1"))` to your `Package.swift`'s `dependencies` section.
5252

5353
Use SPM to run the command: `swift run xcode-selective-test`.
5454

5555
Alternatively, you can use a prebuilt binary release of the tool distributed under [releases](https://github.com/mikeger/XcodeSelectiveTesting/releases) section.
5656

5757
### Using [Mint](https://github.com/yonaskolb/Mint)
5858

59-
`mint install mikeger/XcodeSelectiveTesting@0.12.7`
59+
`mint install mikeger/XcodeSelectiveTesting@0.13.1`
6060

6161
### Manually
6262

@@ -83,12 +83,12 @@ NB: This command assumes you have [jq](https://jqlang.github.io/jq/) tool instal
8383

8484
Alternatively, you can use CLI to achieve the same result:
8585

86-
1. Run `mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan`
86+
1. Run `mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan`
8787
2. Run tests normally, XcodeSelectiveTesting would modify your test plan according to the local changes
8888

8989
To process multiple test plans, specify the `--test-plan` option multiple times:
9090
```bash
91-
mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace \
91+
mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace \
9292
--test-plan TestPlan1.xctestplan \
9393
--test-plan TestPlan2.xctestplan
9494
```
@@ -103,12 +103,12 @@ mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace \
103103
### Use case: Xcode-based project, execute tests on the CI, with test plan
104104

105105
1. Add code to install the tool
106-
2. Add a CI step before you execute your tests: `mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan --base-branch $PR_BASE_BRANCH`
106+
2. Add a CI step before you execute your tests: `mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan --base-branch $PR_BASE_BRANCH`
107107
3. Execute your tests
108108

109109
To process multiple test plans on CI:
110110
```bash
111-
mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace \
111+
mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace \
112112
--test-plan TestPlan1.xctestplan \
113113
--test-plan TestPlan2.xctestplan \
114114
--base-branch $PR_BASE_BRANCH

0 commit comments

Comments
 (0)