Skip to content

Commit

Permalink
bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
epicfaace committed Sep 6, 2019
1 parent 251d708 commit 434525f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion codalab/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Increment this on master when ready to cut a release.
# http://semver.org/
CODALAB_VERSION = '0.3.3'
CODALAB_VERSION = '0.4.0'


class IntegrityError(ValueError):
Expand Down
2 changes: 1 addition & 1 deletion docs/REST-API-Reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# REST API Reference

_version 0.3.3_
_version 0.4.0_

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!
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/constants.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Should match codalab/common.py#CODALAB_VERSION
export const CODALAB_VERSION = '0.3.3';
export const CODALAB_VERSION = '0.4.0';
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import setuptools

# should match codalab/common.py#CODALAB_VERSION
CODALAB_VERSION = "0.3.3"
CODALAB_VERSION = "0.4.0"

if int(setuptools.__version__.split('.')[0]) < 25:
print(
Expand Down
2 changes: 1 addition & 1 deletion worker/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

# should match codalab/common.py#CODALAB_VERSION
CODALAB_VERSION = "0.3.3"
CODALAB_VERSION = "0.4.0"


def get_requirements(*requirements_file_paths):
Expand Down

0 comments on commit 434525f

Please sign in to comment.