Skip to content

Commit 7798b4a

Browse files
authored
Merge branch 'master' into fix/better-missing-component-suggestions
2 parents bcab5b8 + cd3a10f commit 7798b4a

File tree

90 files changed

+926
-906
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+926
-906
lines changed

.github/workflows/all-features.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- x86_64-unknown-linux-gnu
2424
steps:
2525
- name: Clone repo
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
- name: Install rustup stable
2828
run: rustup toolchain install stable --profile minimal
2929
- name: Install Protoc

.github/workflows/centos-fmt-clippy-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
steps:
2525
- name: Clone repo
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
# v2 defaults to a shallow checkout, but we need at least to the previous tag
2929
fetch-depth: 0

.github/workflows/deploy-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Documentation
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
- name: Install mdbook

.github/workflows/linux-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
#snap_arch: armhf
3838
steps:
3939
- name: Clone repo
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
with:
4242
# v2 defaults to a shallow checkout, but we need at least to the previous tag
4343
fetch-depth: 0

.github/workflows/linux-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
#snap_arch: armhf
3232
steps:
3333
- name: Clone repo
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
with:
3636
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3737
fetch-depth: 0

.github/workflows/linux-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
#snap_arch: s390x # skip-pr skip-master
6262
steps:
6363
- name: Clone repo
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6565
with:
6666
# v2 defaults to a shallow checkout, but we need at least to the previous tag
6767
fetch-depth: 0

.github/workflows/macos-builds-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- target: x86_64-apple-darwin
3131
run_tests: YES
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
with:
3535
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3636
fetch-depth: 0

.github/workflows/test-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Documentation
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Install mdbook

.github/workflows/windows-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
mingw: https://ci-mirrors.rust-lang.org/rustc/x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z # skip-pr
3434
mingwdir: mingw64 # skip-pr
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3838
with:
3939
fetch-depth: 0

.github/workflows/windows-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- target: x86_64-pc-windows-msvc
2828
run_tests: YES
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
# v2 defaults to a shallow checkout, but we need at least to the previous tag
3232
with:
3333
fetch-depth: 0

.github/workflows/windows-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
mingwdir: mingw32 # skip-pr skip-master
3737
mingw: https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z # skip-pr skip-master
3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
# v2 defaults to a shallow checkout, but we need at least to the previous tag
4141
with:
4242
fetch-depth: 0

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [1.26.0] - unreleased
3+
## [1.26.0] - 2023-04-05
44

55
This version of Rustup involves a significant number of internal refactors, both in terms
66
of the Rustup code and its tests.
@@ -48,6 +48,7 @@ please review the repository.
4848
- Fix RUSTUP_PERMIT_COPY_RENAME condition so it is actually used [pr#3292]
4949
- Bump a lot of dependencies to their latest versions [pr#renovate-bot]
5050

51+
[1.26.0]: https://github.com/rust-lang/rustup/releases/tag/1.26.0
5152
[rust-analyzer]: https://github.com/rust-lang/rust-analyzer
5253
[proxy]: https://rust-lang.github.io/rustup/concepts/proxies.html
5354
[clap]: https://crates.io/crates/clap
@@ -125,7 +126,7 @@ Thanks go to:
125126
- Pietro Albini
126127
- Daniel Silverstone
127128

128-
[1.25.2]: https://github.com/rust-lang/rustup/release/tag/1.25.2
129+
[1.25.2]: https://github.com/rust-lang/rustup/releases/tag/1.25.2
129130

130131
## [1.25.1] - 2022-07-12
131132

0 commit comments

Comments
 (0)