Skip to content

Commit d140c3f

Browse files
authored
Bump scripts in release (#1241)
1 parent a5e6d8d commit d140c3f

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

build_aarch64_wheel.py

+3
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ def build_torchvision(host: RemoteHost, *,
293293
"v1.12.0": ("0.13.0", "rc4"),
294294
"v1.12.1": ("0.13.1", "rc6"),
295295
"v1.13.0": ("0.14.0", "rc4"),
296+
"v1.13.1": ("0.14.1", "rc2"),
296297
})
297298
print('Building TorchVision wheel')
298299
build_vars = ""
@@ -339,6 +340,7 @@ def build_torchtext(host: RemoteHost, *,
339340
"v1.12.0": ("0.13.0", "rc2"),
340341
"v1.12.1": ("0.13.1", "rc5"),
341342
"v1.13.0": ("0.14.0", "rc3"),
343+
"v1.13.1": ("0.14.1", "rc1"),
342344
})
343345
print('Building TorchText wheel')
344346
build_vars = ""
@@ -380,6 +382,7 @@ def build_torchaudio(host: RemoteHost, *,
380382
"v1.12.0": ("0.12.0", "rc3"),
381383
"v1.12.1": ("0.12.1", "rc5"),
382384
"v1.13.0": ("0.13.0", "rc4"),
385+
"v1.13.1": ("0.13.1", "rc2"),
383386
})
384387
print('Building TorchAudio wheel')
385388
build_vars = ""

release/promote.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
66
source "${DIR}/release_versions.sh"
77

88
# Make sure to update these versions when doing a release first
9-
PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.0}
10-
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.0}
11-
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.0}
12-
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.0}
9+
PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.1}
10+
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.1}
11+
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.1}
12+
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.1}
1313

1414
DRY_RUN=${DRY_RUN:-enabled}
1515

release/release_versions.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# Make sure to update these versions when doing a release first
4-
PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.0}
5-
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.0}
6-
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.0}
7-
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.0}
4+
PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.1}
5+
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.1}
6+
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.1}
7+
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.1}

0 commit comments

Comments
 (0)