From 5527a97a151b3ff2d2537025818aff59406d1ae4 Mon Sep 17 00:00:00 2001 From: AndrewJGaut Date: Tue, 11 Oct 2022 13:57:33 -0700 Subject: [PATCH] Bump version to 1.5.10 --- codalab/common.py | 2 +- docs/REST-API-Reference.md | 2 +- frontend/src/constants.js | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/codalab/common.py b/codalab/common.py index 72dd9c678..644fe38af 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.5.9' +CODALAB_VERSION = '1.5.10' 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 4b88d214c..55e47d2b0 100644 --- a/docs/REST-API-Reference.md +++ b/docs/REST-API-Reference.md @@ -1,6 +1,6 @@ # REST API Reference -_version 1.5.9_ +_version 1.5.10_ 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 2d1d1736f..2701dfb42 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.5.9'; +export const CODALAB_VERSION = '1.5.10'; // 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 1e82b1de7..7245272da 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # should match codalab/common.py#CODALAB_VERSION -CODALAB_VERSION = "1.5.9" +CODALAB_VERSION = "1.5.10" class Install(install):