Skip to content

Commit ff71a41

Browse files
seemetherefacebook-github-bot
authored andcommitted
Bump base version to 1.6.0a0 (pytorch#35495)
Summary: Since we've done the branch cut for 1.5.0 we should bump nightlies to 1.6.0 Signed-off-by: Eli Uriegas <[email protected]> Pull Request resolved: pytorch#35495 Differential Revision: D20697043 Pulled By: seemethere fbshipit-source-id: 3646187a5e729994138bf2c68625f25f11430b3a
1 parent 9e22d15 commit ff71a41

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.circleci/scripts/binary_populate_env.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ PIP_UPLOAD_FOLDER='nightly/'
5858
# We put this here so that OVERRIDE_PACKAGE_VERSION below can read from it
5959
export DATE="$(date -u +%Y%m%d)"
6060
#TODO: We should be pulling semver version from the base version.txt
61-
BASE_BUILD_VERSION="1.5.0.dev$DATE"
61+
BASE_BUILD_VERSION="1.6.0.dev$DATE"
6262
# Change BASE_BUILD_VERSION to git tag when on a git tag
6363
# Use 'git -C' to make doubly sure we're in the correct directory for checking
6464
# the git tag
6565
if tagged_version >/dev/null; then
6666
# Switch upload folder to 'test/' if we are on a tag
6767
PIP_UPLOAD_FOLDER='test/'
6868
# Grab git tag, remove prefixed v and remove everything after -
69-
# Used to clean up tags that are for release candidates like v1.5.0-rc1
70-
# Turns tag v1.5.0-rc1 -> v1.5.0
69+
# Used to clean up tags that are for release candidates like v1.6.0-rc1
70+
# Turns tag v1.6.0-rc1 -> v1.6.0
7171
BASE_BUILD_VERSION="$(tagged_version | sed -e 's/^v//' -e 's/-.*$//')"
7272
fi
7373
if [[ "$(uname)" == 'Darwin' ]] || [[ "$DESIRED_CUDA" == "cu101" ]] || [[ "$PACKAGE_TYPE" == conda ]]; then
@@ -111,7 +111,7 @@ export BUILD_PYTHONLESS="${BUILD_PYTHONLESS:-}"
111111
export DESIRED_DEVTOOLSET="$DESIRED_DEVTOOLSET"
112112
113113
export DATE="$DATE"
114-
export NIGHTLIES_DATE_PREAMBLE=1.5.0.dev
114+
export NIGHTLIES_DATE_PREAMBLE=1.6.0.dev
115115
export PYTORCH_BUILD_VERSION="$PYTORCH_BUILD_VERSION"
116116
export PYTORCH_BUILD_NUMBER="$PYTORCH_BUILD_NUMBER"
117117
export OVERRIDE_PACKAGE_VERSION="$PYTORCH_BUILD_VERSION"

android/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ repositories {
3434
3535
dependencies {
3636
...
37-
implementation 'org.pytorch:pytorch_android:1.5.0-SNAPSHOT'
38-
implementation 'org.pytorch:pytorch_android_torchvision:1.5.0-SNAPSHOT'
37+
implementation 'org.pytorch:pytorch_android:1.6.0-SNAPSHOT'
38+
implementation 'org.pytorch:pytorch_android_torchvision:1.6.0-SNAPSHOT'
3939
...
4040
}
4141
```
42-
The current nightly(snapshots) version is the value of `VERSION_NAME` in `gradle.properties` in current folder, at this moment it is `1.5.0-SNAPSHOT`.
42+
The current nightly(snapshots) version is the value of `VERSION_NAME` in `gradle.properties` in current folder, at this moment it is `1.6.0-SNAPSHOT`.
4343

4444
## Building PyTorch Android from Source
4545

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ABI_FILTERS=armeabi-v7a,arm64-v8a,x86,x86_64
22

3-
VERSION_NAME=1.5.0-SNAPSHOT
3+
VERSION_NAME=1.6.0-SNAPSHOT
44
GROUP=org.pytorch
55
MAVEN_GROUP=org.pytorch
66
POM_URL=https://github.com/pytorch/pytorch/tree/master/android

android/test_app/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ dependencies {
9292

9393
localImplementation project(':pytorch_android')
9494
localImplementation project(':pytorch_android_torchvision')
95-
nightlyImplementation 'org.pytorch:pytorch_android:1.5.0-SNAPSHOT'
96-
nightlyImplementation 'org.pytorch:pytorch_android_torchvision:1.5.0-SNAPSHOT'
95+
nightlyImplementation 'org.pytorch:pytorch_android:1.6.0-SNAPSHOT'
96+
nightlyImplementation 'org.pytorch:pytorch_android_torchvision:1.6.0-SNAPSHOT'
9797

9898
def camerax_version = "1.0.0-alpha05"
9999
cameraImplementation "androidx.camera:camera-core:$camerax_version"

ios/LibTorch.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'LibTorch'
3-
s.version = '1.5.0'
3+
s.version = '1.6.0'
44
s.authors = 'PyTorch Team'
55
s.license = { :type => 'BSD' }
66
s.homepage = 'https://github.com/pytorch/pytorch'

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0a0
1+
1.6.0a0

0 commit comments

Comments
 (0)