diff --git a/codalab/common.py b/codalab/common.py index b6703f96b..91405d86d 100644 --- a/codalab/common.py +++ b/codalab/common.py @@ -8,7 +8,7 @@ # Increment this on master when ready to cut a release. # http://semver.org/ -CODALAB_VERSION = '0.5.8' +CODALAB_VERSION = '0.5.9' class IntegrityError(ValueError): diff --git a/docs/REST-API-Reference.md b/docs/REST-API-Reference.md index 0f7978949..3c4fdf1f4 100644 --- a/docs/REST-API-Reference.md +++ b/docs/REST-API-Reference.md @@ -1,6 +1,6 @@ # REST API Reference -_version 0.5.8_ +_version 0.5.9_ 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 bfe245a83..91e799438 100644 --- a/frontend/src/constants.js +++ b/frontend/src/constants.js @@ -1,4 +1,4 @@ // Should match codalab/common.py#CODALAB_VERSION -export const CODALAB_VERSION = '0.5.8'; +export const CODALAB_VERSION = '0.5.9'; export const NAVBAR_HEIGHT = 60; diff --git a/setup.py b/setup.py index 132db2b34..1777b3dc5 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # should match codalab/common.py#CODALAB_VERSION -CODALAB_VERSION = "0.5.8" +CODALAB_VERSION = "0.5.9" class Install(install):