Skip to content

Commit dbe6c42

Browse files
authored
Bump version to 0.10.1 (#2053)
1 parent 4065ff2 commit dbe6c42

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/config.yml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ binary_common: &binary_common
6363
build_version:
6464
description: "version number of release binary; by default, build a nightly"
6565
type: string
66-
default: "0.10.0"
66+
default: "0.10.1"
6767
pytorch_version:
6868
description: "PyTorch version to build against; by default, use a nightly"
6969
type: string

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ def _get_pattern():
143143
#
144144
# The short X.Y version.
145145
# TODO: change to [:2] at v1.0
146-
version = '0.10.0 '
146+
version = '0.10.1'
147147
# The full version, including alpha/beta/rc tags.
148148
# TODO: verify this works as expected
149-
release = '0.10.0'
149+
release = '0.10.1'
150150

151151
# The language for content autogenerated by Sphinx. Refer to documentation
152152
# for a list of supported languages.

packaging/build_conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
55
. "$script_dir/pkg_helpers.bash"
66

77
export BUILD_TYPE="conda"
8-
setup_env 0.10.0
8+
setup_env 0.10.1
99
export SOURCE_ROOT_DIR="$PWD"
1010
setup_conda_pytorch_constraint
1111
setup_conda_cudatoolkit_constraint

packaging/build_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
55
. "$script_dir/pkg_helpers.bash"
66

77
export BUILD_TYPE="wheel"
8-
setup_env 0.10.0
8+
setup_env 0.10.1
99
setup_wheel_python
1010
pip_install numpy future cmake ninja
1111
setup_pip_pytorch_version

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def _run_cmd(cmd):
2222

2323

2424
def _get_version(sha):
25-
version = '0.11.0a0'
25+
version = '0.10.1'
2626
if os.getenv('BUILD_VERSION'):
2727
version = os.getenv('BUILD_VERSION')
2828
elif sha is not None:

0 commit comments

Comments
 (0)