Skip to content

Commit ace555d

Browse files
authored
Migrate URLs in documentation/comments/etc. from /apple/ to /swiftlang/. (#596)
This PR moves all references to URLs under https://github.com/apple/ to https://github.com/swiftlang/. ### Checklist: - [x] Code and documentation should follow the style of the [Style Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md). - [x] If public symbols are renamed or modified, DocC references should be updated.
1 parent 1cedf5d commit ace555d

36 files changed

+72
-72
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ discussion prior to being accepted.
1818
1919
To learn how to write tests using the testing library, rather than how to
2020
contribute to the testing library itself, see
21-
[Getting Started](https://github.com/apple/swift-testing/tree/main/Sources/Testing/Testing.docc/TemporaryGettingStarted.md).
21+
[Getting Started](https://github.com/swiftlang/swift-testing/tree/main/Sources/Testing/Testing.docc/TemporaryGettingStarted.md).
2222

2323
## Reporting issues
2424

2525
Issues are tracked using the testing library's
26-
[GitHub Issue Tracker](https://github.com/apple/swift-testing/issues).
26+
[GitHub Issue Tracker](https://github.com/swiftlang/swift-testing/issues).
2727

2828
Fill in the fields of the relevant template form offered on that page when
2929
creating new issues. For bug report issues, please include a minimal example
@@ -34,7 +34,7 @@ hosting service.
3434
## Setting up the development environment
3535

3636
First, clone the Swift Testing repository from
37-
[https://github.com/apple/swift-testing](https://github.com/apple/swift-testing).
37+
[https://github.com/swiftlang/swift-testing](https://github.com/swiftlang/swift-testing).
3838

3939
If you're preparing to make a contribution, you should fork the repository first
4040
and clone the fork which will make opening PRs easier.
@@ -142,7 +142,7 @@ test --help` to view the usage documentation.
142142

143143
## Creating Pull Requests (PRs)
144144

145-
1. Fork [https://github.com/apple/swift-testing](https://github.com/apple/swift-testing).
145+
1. Fork [https://github.com/swiftlang/swift-testing](https://github.com/swiftlang/swift-testing).
146146
1. Clone a working copy of your fork.
147147
1. Create a new branch.
148148
1. Make your code changes.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
FROM swiftlang/swift:nightly-main-jammy
1010

1111
# Set up the current build user in the same way done in the Swift.org CI system:
12-
# https://github.com/apple/swift-docker/blob/main/swift-ci/master/ubuntu/22.04/Dockerfile
12+
# https://github.com/swiftlang/swift-docker/blob/main/swift-ci/master/ubuntu/22.04/Dockerfile
1313

1414
RUN groupadd -g 998 build-user && \
1515
useradd -m -r -u 998 -g build-user build-user

Documentation/CMake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add Swift Testing to your project using the standard `FetchContent` or
88
```cmake
99
include(FetchContent)
1010
FetchContent_Declare(SwiftTesting
11-
GIT_REPOSITORY https://github.com/apple/swift-testing.git
11+
GIT_REPOSITORY https://github.com/swiftlang/swift-testing.git
1212
GIT_TAG main)
1313
FetchContent_MakeAvailable(SwiftTesting)
1414
```

Documentation/Proposals/0000-proposal-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* Proposal: [SWT-NNNN](NNNN-filename.md)
44
* Authors: [Author 1](https://github.com/author1), [Author 2](https://github.com/author2)
55
* Status: **Awaiting implementation** or **Awaiting review**
6-
* Bug: _if applicable_ [apple/swift-testing#NNNNN](https://github.com/apple/swift-testing/issues/NNNNN)
7-
* Implementation: [apple/swift-testing#NNNNN](https://github.com/apple/swift-testing/pull/NNNNN)
6+
* Bug: _if applicable_ [swiftlang/swift-testing#NNNNN](https://github.com/swiftlang/swift-testing/issues/NNNNN)
7+
* Implementation: [swiftlang/swift-testing#NNNNN](https://github.com/swiftlang/swift-testing/pull/NNNNN)
88
* Previous Proposal: _if applicable_ [SWT-XXXX](XXXX-filename.md)
9-
* Previous Revision: _if applicable_ [1](https://github.com/apple/swift-testing/blob/...commit-ID.../Documentation/Proposals/NNNN-filename.md)
9+
* Previous Revision: _if applicable_ [1](https://github.com/swiftlang/swift-testing/blob/...commit-ID.../Documentation/Proposals/NNNN-filename.md)
1010
* Review: ([pitch](https://forums.swift.org/...))
1111

1212
When filling out this template, you should delete or replace all of the text
@@ -146,7 +146,7 @@ the current proposal. It's important to make focused, self-contained proposals
146146
that can be incrementally implemented and reviewed, but it's also good when
147147
proposals feel "complete" rather than leaving significant gaps in their design.
148148
An an example from the Swift project, when
149-
[SE-0193](https://github.com/apple/swift-evolution/blob/main/proposals/0193-cross-module-inlining-and-specialization.md)
149+
[SE-0193](https://github.com/swiftlang/swift-evolution/blob/main/proposals/0193-cross-module-inlining-and-specialization.md)
150150
introduced the `@inlinable` attribute, it also included the `@usableFromInline`
151151
attribute so that declarations used in inlinable functions didn't have to be
152152
`public`. This was a relatively small addition to the proposal which avoided

Documentation/Proposals/0001-refactor-bug-inits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Proposal: [SWT-0001](0001-refactor-bug-inits.md)
44
* Authors: [Jonathan Grynspan](https://github.com/grynspan)
55
* Status: **Accepted**
6-
* Implementation: [apple/swift-testing#401](https://github.com/apple/swift-testing/pull/401)
6+
* Implementation: [swiftlang/swift-testing#401](https://github.com/swiftlang/swift-testing/pull/401)
77
* Review: ([pitch](https://forums.swift.org/t/pitch-dedicated-bug-functions-for-urls-and-ids/71842)), ([acceptance](https://forums.swift.org/t/swt-0001-dedicated-bug-functions-for-urls-and-ids/71842/2))
88

99
## Introduction

Documentation/Proposals/0002-json-abi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* Proposal: [SWT-0002](0002-json-abi.md)
44
* Authors: [Jonathan Grynspan](https://github.com/grynspan)
55
* Status: **Accepted**
6-
* Implementation: [apple/swift-testing#383](https://github.com/apple/swift-testing/pull/383),
7-
[apple/swift-testing#402](https://github.com/apple/swift-testing/pull/402)
6+
* Implementation: [swiftlang/swift-testing#383](https://github.com/swiftlang/swift-testing/pull/383),
7+
[swiftlang/swift-testing#402](https://github.com/swiftlang/swift-testing/pull/402)
88
* Review: ([pitch](https://forums.swift.org/t/pitch-a-stable-json-based-abi-for-tools-integration/72627)), ([acceptance](https://forums.swift.org/t/pitch-a-stable-json-based-abi-for-tools-integration/72627/4))
99

1010
## Introduction

Documentation/Proposals/0003-make-serialized-trait-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Authors: [Dennis Weissmann](https://github.com/dennisweissmann)
55
* Status: **Accepted**
66
* Implementation:
7-
[apple/swift-testing#535](https://github.com/apple/swift-testing/pull/535)
7+
[swiftlang/swift-testing#535](https://github.com/swiftlang/swift-testing/pull/535)
88
* Review:
99
([pitch](https://forums.swift.org/t/pitch-make-serialized-trait-public-api/73147)),
1010
([acceptance](https://forums.swift.org/t/pitch-make-serialized-trait-public-api/73147/5))

Documentation/Proposals/0004-constrain-the-granularity-of-test-time-limit-durations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Authors: [Dennis Weissmann](https://github.com/dennisweissmann)
66
* Status: **Accepted**
77
* Implementation:
8-
[apple/swift-testing#534](https://github.com/apple/swift-testing/pull/534)
8+
[swiftlang/swift-testing#534](https://github.com/swiftlang/swift-testing/pull/534)
99
* Review:
1010
([pitch](https://forums.swift.org/t/pitch-constrain-the-granularity-of-test-time-limit-durations/73146)),
1111
([acceptance](https://forums.swift.org/t/pitch-constrain-the-granularity-of-test-time-limit-durations/73146/3))

Documentation/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,36 +13,36 @@ See https://swift.org/CONTRIBUTORS.txt for Swift project authors
1313
## API and usage guides
1414

1515
The detailed documentation for Swift Testing can be found on the
16-
[Swift Package Index](https://swiftpackageindex.com/apple/swift-testing/main/documentation/testing).
16+
[Swift Package Index](https://swiftpackageindex.com/swiftlang/swift-testing/main/documentation/testing).
1717
There, you can delve into comprehensive guides, tutorials, and API references to
1818
make the most out of this package.
1919

20-
This documentation is generated using [DocC](https://github.com/apple/swift-docc)
20+
This documentation is generated using [DocC](https://github.com/swiftlang/swift-docc)
2121
and is derived from symbol documentation in this project's source code as well
2222
as supplemental content located in the
23-
[`Sources/Testing/Testing.docc/`](https://github.com/apple/swift-testing/tree/main/Sources/Testing/Testing.docc)
23+
[`Sources/Testing/Testing.docc/`](https://github.com/swiftlang/swift-testing/tree/main/Sources/Testing/Testing.docc)
2424
directory.
2525

2626
## Vision document
2727

28-
The [Vision document](https://github.com/apple/swift-evolution/blob/main/visions/swift-testing.md)
28+
The [Vision document](https://github.com/swiftlang/swift-evolution/blob/main/visions/swift-testing.md)
2929
for Swift Testing offers a comprehensive discussion of the project's design
3030
principles and goals.
3131

3232
## Development and contribution
3333

34-
- The top-level [`README`](https://github.com/apple/swift-testing/blob/main/README.md)
34+
- The top-level [`README`](https://github.com/swiftlang/swift-testing/blob/main/README.md)
3535
gives a high-level overview of the project, shows current CI status, lists the
3636
support status of various platforms, and more.
37-
- [Contributing](https://github.com/apple/swift-testing/blob/main/CONTRIBUTING.md)
37+
- [Contributing](https://github.com/swiftlang/swift-testing/blob/main/CONTRIBUTING.md)
3838
provides guidance for developing and making project contributions.
39-
- [Style Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md)
39+
- [Style Guide](https://github.com/swiftlang/swift-testing/blob/main/Documentation/StyleGuide.md)
4040
describes this project's guidelines for code and documentation style.
41-
- [SPI groups in Swift Testing](https://github.com/apple/swift-testing/blob/main/Documentation/SPI.md)
41+
- [SPI groups in Swift Testing](https://github.com/swiftlang/swift-testing/blob/main/Documentation/SPI.md)
4242
describes when and how the testing library uses Swift SPI.
4343

4444
## Project maintenance
4545

46-
- The [Releases](https://github.com/apple/swift-testing/blob/main/Documentation/Releases.md)
46+
- The [Releases](https://github.com/swiftlang/swift-testing/blob/main/Documentation/Releases.md)
4747
document describes the process of creating and publishing a new release of
4848
Swift Testing — a task which may be performed by project administrators.

Documentation/Releases.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ be updated so that the release can be used as a package dependency:
4949
update the line:
5050

5151
```diff
52-
- .package(url: "https://github.com/apple/swift-testing.git", branch: "main"),
53-
+ .package(url: "https://github.com/apple/swift-testing.git", from: "x.y.z"),
52+
- .package(url: "https://github.com/swiftlang/swift-testing.git", branch: "main"),
53+
+ .package(url: "https://github.com/swiftlang/swift-testing.git", from: "x.y.z"),
5454
```
5555

5656
The repository's local state is now updated. To commit it to your branch, run
@@ -94,7 +94,7 @@ git tag x.y.z
9494
git push -u origin x.y.z
9595
```
9696

97-
The release is now live and publicly visible [here](https://github.com/apple/swift-testing/tags).
97+
The release is now live and publicly visible [here](https://github.com/swiftlang/swift-testing/tags).
9898
Developers using Swift Package Manager and listing Swift Testing as a dependency
9999
will automatically update to it.
100100

0 commit comments

Comments
 (0)