diff --git a/codalab/common.py b/codalab/common.py index 5b0546e00..f644f1367 100644 --- a/codalab/common.py +++ b/codalab/common.py @@ -29,7 +29,7 @@ # Increment this on master when ready to cut a release. # http://semver.org/ -CODALAB_VERSION = '1.7.0' +CODALAB_VERSION = '1.7.1' BINARY_PLACEHOLDER = '' URLOPEN_TIMEOUT_SECONDS = int(os.environ.get('CODALAB_URLOPEN_TIMEOUT_SECONDS', 5 * 60)) diff --git a/docs/REST-API-Reference.md b/docs/REST-API-Reference.md index 0ef41d49e..3ff2381e2 100644 --- a/docs/REST-API-Reference.md +++ b/docs/REST-API-Reference.md @@ -1,6 +1,6 @@ # REST API Reference -_version 1.7.0_ +_version 1.7.1_ This reference and the REST API itself is still under heavy development and is subject to change at any time. Feedback through our GitHub issues is appreciated! diff --git a/frontend/src/constants.js b/frontend/src/constants.js index 6b1563ba8..9d7bf6542 100644 --- a/frontend/src/constants.js +++ b/frontend/src/constants.js @@ -1,5 +1,5 @@ // Should match codalab/common.py#CODALAB_VERSION -export const CODALAB_VERSION = '1.7.0'; +export const CODALAB_VERSION = '1.7.1'; // Name Regex to match the backend in spec_utils.py export const NAME_REGEX = /^[a-zA-Z_][a-zA-Z0-9_.-]*$/i; diff --git a/setup.py b/setup.py index da3ee1130..66fdcddad 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # should match codalab/common.py#CODALAB_VERSION -CODALAB_VERSION = "1.7.0" +CODALAB_VERSION = "1.7.1" class Install(install):