Skip to content

6.1.2 #416

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 1, 2025
Merged

6.1.2 #416

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 .github/workflows/Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Install Swift
uses: tayloraswift/swift-install-action@master
with:
swift-prefix: "swift-6.1-release/ubuntu2404/swift-6.1-RELEASE"
swift-id: "swift-6.1-RELEASE-ubuntu24.04"
swift-prefix: "swift-6.1.2-release/ubuntu2404/swift-6.1.2-RELEASE"
swift-id: "swift-6.1.2-RELEASE-ubuntu24.04"

# This installs an older version of Unidoc, not the one we are testing.
# We use `--static-swift-stdlib` so it doesn’t matter if the Unidoc binary was
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
-v $PWD:/swift/swift-unidoc \
-w /swift/swift-unidoc \
-e SWIFT_INSTALLATION=/usr \
swift:6.1-noble \
swift:6.1.2-noble \
/bin/bash Scripts/Linux/TestAll

linux:
Expand All @@ -47,8 +47,8 @@ jobs:
- name: Install Swift
uses: tayloraswift/swift-install-action@master
with:
swift-prefix: "swift-6.1-release/ubuntu2404/swift-6.1-RELEASE"
swift-id: "swift-6.1-RELEASE-ubuntu24.04"
swift-prefix: "swift-6.1.2-release/ubuntu2404/swift-6.1.2-RELEASE"
swift-id: "swift-6.1.2-RELEASE-ubuntu24.04"

- name: Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Linux/GeneratePackageSymbolGraphs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ssgc slave https://github.com/pointfreeco/swift-snapshot-testing.git 1.18.3 \
-u $SWIFT_INSTALLATION \
-o TestPackages/swift-snapshot-testing.bson

ssgc slave https://github.com/swiftlang/indexstore-db.git swift-6.1-RELEASE \
ssgc slave https://github.com/swiftlang/indexstore-db.git swift-6.1.2-RELEASE \
-u $SWIFT_INSTALLATION \
-o TestPackages/indexstore-db.bson \
--Xcxx -I$SWIFT_INSTALLATION/lib/swift \
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Linux/x86_64/aarch64-jammy.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tayloraswift/swift-cross-aarch64:6.1-jammy
FROM tayloraswift/swift-cross-aarch64:6.1.2-jammy

# Only bash supports multiline strings
SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Linux/x86_64/aarch64-noble.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tayloraswift/swift-cross-aarch64:6.1-noble
FROM tayloraswift/swift-cross-aarch64:6.1.2-noble

# Only bash supports multiline strings
SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Linux/x86_64/x86_64-jammy.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tayloraswift/swift-cross-aarch64:6.1-jammy
FROM tayloraswift/swift-cross-aarch64:6.1.2-jammy

RUN apt update
RUN apt -y install libjemalloc-dev:amd64 libjemalloc2:amd64
2 changes: 1 addition & 1 deletion Scripts/Linux/x86_64/x86_64-noble.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tayloraswift/swift-cross-aarch64:6.1-noble
FROM tayloraswift/swift-cross-aarch64:6.1.2-noble

RUN apt update
RUN apt -y install libjemalloc-dev:amd64 libjemalloc2:amd64
2 changes: 1 addition & 1 deletion Sources/UnidocUI/Unidoc.RenderFormat (ext).swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ extension Unidoc.RenderFormat

var availableVersions:[String]
{
["6.1"]
["6.1.2"]
}
}
2 changes: 1 addition & 1 deletion Sources/unidocd/Main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct Main
name: [.customLong("swift-toolchain"), .customShort("u")],
help: "The path to a Swift toolchain directory, usually ending in 'usr'",
completion: .directory)
var toolchain:FilePath.Directory = "/home/ubuntu/6.1/aarch64/usr"
var toolchain:FilePath.Directory = "/home/ubuntu/6.1.2/aarch64/usr"

@Option(
name: [.customLong("swift-sdk"), .customShort("k")],
Expand Down
Loading