Skip to content

Commit

Permalink
Merge pull request #3987 from codalab/rc1.4.3
Browse files Browse the repository at this point in the history
bump version to 1.4.3
  • Loading branch information
epicfaace committed Feb 21, 2022
2 parents dedd917 + a3c4a97 commit 10d4871
Show file tree
Hide file tree
Showing 5 changed files with 6 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 @@ -26,7 +26,7 @@

# Increment this on master when ready to cut a release.
# http://semver.org/
CODALAB_VERSION = '1.4.2'
CODALAB_VERSION = '1.4.3'
BINARY_PLACEHOLDER = '<binary>'
URLOPEN_TIMEOUT_SECONDS = int(os.environ.get('CODALAB_URLOPEN_TIMEOUT_SECONDS', 5 * 60))

Expand Down
3 changes: 2 additions & 1 deletion codalab/rest/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

class CompatibleInteger(fields.Integer):
def serialize(self, attr, obj, accessor=None):
"""Overrides change done from 2.10.2->2.10.3 in https://github.com/marshmallow-code/marshmallow/commit/d81cab413e231ec40123020f110a8c0af22163ed."""
"""Overrides change done from 2.10.2->2.10.3 in https://github.com/marshmallow-code/marshmallow/commit/d81cab413e231ec40123020f110a8c0af22163ed.
"""
ret = Field.serialize(self, attr, obj, accessor=accessor)
return self._to_string(ret) if (self.as_string and ret is not None) else ret

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 1.4.2_
_version 1.4.3_

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,5 +1,5 @@
// Should match codalab/common.py#CODALAB_VERSION
export const CODALAB_VERSION = '1.4.2';
export const CODALAB_VERSION = '1.4.3';

// Name Regex to match the backend in spec_utils.py
export const NAME_REGEX = /^[a-zA-Z_][a-zA-Z0-9_.-]*$/i;
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


# should match codalab/common.py#CODALAB_VERSION
CODALAB_VERSION = "1.4.2"
CODALAB_VERSION = "1.4.3"


class Install(install):
Expand Down

0 comments on commit 10d4871

Please sign in to comment.