Skip to content

Commit 1975d04

Browse files
committed
Merge 'master' into release
2 parents ff7d25b + d159f3a commit 1975d04

20 files changed

+426
-331
lines changed

.github/workflows/cargo-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest]
21-
toolchain: [1.85.0]
21+
toolchain: [1.85.1]
2222
include:
2323
- os: windows-latest
24-
toolchain: 1.85.0-x86_64-pc-windows-gnu
24+
toolchain: 1.85.1-x86_64-pc-windows-gnu
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/rust.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest]
9-
toolchain: [1.85.0]
9+
toolchain: [1.85.1]
1010
include:
1111
- os: windows-latest
12-
toolchain: 1.85.0-x86_64-pc-windows-gnu
12+
toolchain: 1.85.1-x86_64-pc-windows-gnu
1313
runs-on: ${{ matrix.os }}
1414
steps:
1515
- uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
- uses: actions/checkout@v4
6060
- uses: dtolnay/rust-toolchain@master
6161
with:
62-
toolchain: 1.85.0
62+
toolchain: 1.85.1
6363
components: rustfmt
6464
- run: cargo fmt -- --check
6565

@@ -68,10 +68,10 @@ jobs:
6868
fail-fast: false
6969
matrix:
7070
os: [ubuntu-latest, macos-latest]
71-
toolchain: [1.85.0, 1.75.0]
71+
toolchain: [1.85.1, 1.75.0]
7272
include:
7373
- os: windows-latest
74-
toolchain: 1.85.0-x86_64-pc-windows-gnu
74+
toolchain: 1.85.1-x86_64-pc-windows-gnu
7575
- os: windows-latest
7676
toolchain: 1.75.0-x86_64-pc-windows-gnu
7777
runs-on: ${{ matrix.os }}

CI/test_download.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@
3333
"0.6.3": "0.6.3",
3434
"0.7.0beta1": "0.7.0-beta.1",
3535
"0.7.0beta2": "0.7.0-beta.2",
36+
"0.7.0": "0.7.0",
37+
"0.7.1": "0.7.1",
3638
# Newer versions below. We're bound to what older versions were doing to find the
3739
# right download on self-update. I don't know what went through my head when I
3840
# made that code strip dashes from tag names...
39-
"0.7.0": "0.7.0",
40-
"0.7.1": "0.7.1",
41+
"0.7.2": "0.7.2",
4142
# Here's a trick to make things happy-ish in the future: older versions don't
4243
# handle tags prefixed with "v", but will still do a self-update to the first
4344
# one it finds.

CI/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from util import build_commit
1717

1818
MERCURIAL_VERSION = "6.9.1"
19-
GIT_VERSION = "2.48.1"
19+
GIT_VERSION = "2.49.0"
2020

2121
ALL_MERCURIAL_VERSIONS = (
2222
"1.9.3",
@@ -334,7 +334,7 @@ def install(self):
334334
return ["{} -m pip install --force-reinstall {}".format(python, filename)]
335335

336336

337-
def install_rust(version="1.85.0", target="x86_64-unknown-linux-gnu"):
337+
def install_rust(version="1.85.1", target="x86_64-unknown-linux-gnu"):
338338
rustup_opts = "-y --default-toolchain none"
339339
cargo_dir = "$HOME/.cargo/bin/"
340340
rustup = cargo_dir + "rustup"

0 commit comments

Comments
 (0)