Skip to content

Commit

Permalink
Merge branch 'master' into fix/better-missing-component-suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l authored Oct 8, 2023
2 parents bcab5b8 + cd3a10f commit 7798b4a
Show file tree
Hide file tree
Showing 90 changed files with 926 additions and 906 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all-features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- x86_64-unknown-linux-gnu
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install rustup stable
run: rustup toolchain install stable --profile minimal
- name: Install Protoc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/centos-fmt-clippy-on-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# v2 defaults to a shallow checkout, but we need at least to the previous tag
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install mdbook
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
#snap_arch: armhf
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# v2 defaults to a shallow checkout, but we need at least to the previous tag
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
#snap_arch: armhf
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# v2 defaults to a shallow checkout, but we need at least to the previous tag
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
#snap_arch: s390x # skip-pr skip-master
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# v2 defaults to a shallow checkout, but we need at least to the previous tag
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-builds-on-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- target: x86_64-apple-darwin
run_tests: YES
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# v2 defaults to a shallow checkout, but we need at least to the previous tag
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install mdbook
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
mingw: https://ci-mirrors.rust-lang.org/rustc/x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z # skip-pr
mingwdir: mingw64 # skip-pr
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# v2 defaults to a shallow checkout, but we need at least to the previous tag
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- target: x86_64-pc-windows-msvc
run_tests: YES
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# v2 defaults to a shallow checkout, but we need at least to the previous tag
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
mingwdir: mingw32 # skip-pr skip-master
mingw: https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z # skip-pr skip-master
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# v2 defaults to a shallow checkout, but we need at least to the previous tag
with:
fetch-depth: 0
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [1.26.0] - unreleased
## [1.26.0] - 2023-04-05

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

[1.26.0]: https://github.com/rust-lang/rustup/releases/tag/1.26.0
[rust-analyzer]: https://github.com/rust-lang/rust-analyzer
[proxy]: https://rust-lang.github.io/rustup/concepts/proxies.html
[clap]: https://crates.io/crates/clap
Expand Down Expand Up @@ -125,7 +126,7 @@ Thanks go to:
- Pietro Albini
- Daniel Silverstone

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

## [1.25.1] - 2022-07-12

Expand Down
Loading

0 comments on commit 7798b4a

Please sign in to comment.