Skip to content

Update links for repositories moved to the swiftlang org on GitHub #2699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 26, 2024
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BASICFORMAT_BUG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ labels: [bug, BasicFormat]
body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing BasicFormat Bug Reports](https://swiftpackageindex.com/apple/swift-syntax/main/documentation/swiftbasicformat/filingbugreports).
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing BasicFormat Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftbasicformat/filingbugreports).
- type: textarea
id: source
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/PARSER_BUG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ labels: [bug, SwiftParser]
body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing Parser Bug Reports](https://swiftpackageindex.com/apple/swift-syntax/main/documentation/swiftparser/filingbugreports).
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports).
- type: dropdown
id: issue-type
attributes:
label: Issue Kind
description: What kind of issue is this? See [Filing Parser Bug Reports](https://swiftpackageindex.com/apple/swift-syntax/main/documentation/swiftparser/filingbugreports) for more details.
description: What kind of issue is this? See [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports) for more details.
options:
- Round-Trip Failure
- Parser Crash
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
url: https://forums.swift.org/tags/c/development/tooling/39/swift-syntax
about: Ask and answer questions about SwiftSyntax
- name: SwiftSyntax Documentation
url: https://swiftpackageindex.com/apple/swift-syntax/documentation/swiftsyntax
url: https://swiftpackageindex.com/swiftlang/swift-syntax/documentation/swiftsyntax
about: Learn about how to use the SwiftSyntax in your projects
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ swift-syntax is a SwiftPM package, so you can build and test it using anything t

## Formatting

swift-syntax is formatted using [swift-format](http://github.com/apple/swift-format) to ensure a consistent style.
swift-syntax is formatted using [swift-format](http://github.com/swiftlang/swift-format) to ensure a consistent style.

To format your changes run the formatter using the following command
```bash
Expand Down
2 changes: 1 addition & 1 deletion CodeGeneration/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
.executable(name: "generate-swift-syntax", targets: ["generate-swift-syntax"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-syntax", from: "510.0.0"),
.package(url: "https://github.com/swiftlang/swift-syntax", from: "510.0.0"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2"),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion CodeGeneration/Sources/SyntaxSupport/Child.swift
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public class Child {
The old string-based implementation returned "Token" to ensure that `tokenKind` is not nil
and that `isToken` computed-property will return true, but the value "Token" had never been
used in other cases. We should try to remove this computed property altogether in the issue:
https://github.com/apple/swift-syntax/issues/2010
https://github.com/swiftlang/swift-syntax/issues/2010
*/
return .unknown
}
Expand Down
4 changes: 2 additions & 2 deletions Examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Furthermore, SwiftSyntax uses [`SwiftSyntaxBuilder`](../Sources/SwiftSyntaxBuild

[**Swift AST Explorer**](https://swift-ast-explorer.com/): A Swift AST visualizer.

[**Swift Stress Tester**](https://github.com/apple/swift-stress-tester): A test driver for `sourcekitd` and Swift evolution.
[**Swift Stress Tester**](https://github.com/swiftlang/swift-stress-tester): A test driver for `sourcekitd` and Swift evolution.

[**swift-format**](https://github.com/apple/swift-format): Formatting technology for Swift source code.
[**swift-format**](https://github.com/swiftlang/swift-format): Formatting technology for Swift source code.

[**SwiftLint**](https://github.com/realm/SwiftLint): A tool to enforce Swift style and conventions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The swift-syntax package is a set of libraries that work on a source-accurate tr

## Documentation

You can read SwiftSyntax’s documentation on [swiftpackageindex.com](https://swiftpackageindex.com/apple/swift-syntax/documentation).
You can read SwiftSyntax’s documentation on [swiftpackageindex.com](https://swiftpackageindex.com/swiftlang/swift-syntax/documentation).

A great way to interactively explore the SwiftSyntax tree of a source file is https://swift-ast-explorer.com, developed by [@kishikawakatsumi](https://github.com/kishikawakatsumi).

Expand All @@ -19,15 +19,15 @@ To depend on swift-syntax in a SwiftPM package, add the following to your `Packa

```swift
dependencies: [
.package(url: "https://github.com/apple/swift-syntax.git", from: "<#latest swift-syntax tag#>"),
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "<#latest swift-syntax tag#>"),
],
```

To add swift-syntax as a dependency of your Xcode project, go to the *Package Dependencies* tab of your Xcode project, click the plus button and search for https://github.com/apple/swift-syntax.git.
To add swift-syntax as a dependency of your Xcode project, go to the *Package Dependencies* tab of your Xcode project, click the plus button and search for https://github.com/swiftlang/swift-syntax.git.

## Reporting Issues

If you should hit any issues while using SwiftSyntax, we appreciate bug reports on [GitHub Issue](https://github.com/apple/swift-syntax/issues).
If you should hit any issues while using SwiftSyntax, we appreciate bug reports on [GitHub Issue](https://github.com/swiftlang/swift-syntax/issues).

## Contributing

Expand All @@ -42,7 +42,7 @@ into your `WORKSPACE` and depend on the libraries you need from the
`Library_opt` target (such as `SwiftSyntax_opt`) which forces
SwiftSyntax to always build with optimizations enabled. This may help
local runtime performance at the cost of debuggability, and initial
build time. Please tag any [issues](https://github.com/apple/swift-syntax/issues) related to the Bazel configuration with the label "Bazel".
build time. Please tag any [issues](https://github.com/swiftlang/swift-syntax/issues) related to the Bazel configuration with the label "Bazel".

## License

Expand Down
Loading