Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi-mosaicml committed Mar 16, 2022
1 parent be5b3bc commit 00e51ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
from composer.models import ComposerModel as ComposerModel
from composer.trainer import Trainer as Trainer

__version__ = "0.4.1"
__version__ = "0.5.0"
2 changes: 1 addition & 1 deletion composer/core/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def null(precision):


def _ensure_backwards_compatible_checkpointing(state_dict: types.StateDict):
# v0.4.1 removed the leading underscores for the keys in the state_dict
# v0.5.0 removed the leading underscores for the keys in the state_dict
# It also renamed _is_model_ddp_wrapped to is_model_ddp
state = {}
for k, v in state_dict.items():
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

package:
name: mosaicml
version: "0.4.1"
version: "0.5.0"

source:
git_url: ./
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def package_files(prefix: str, directory: str, extension: str):
composer_data_files += package_files('composer', 'algorithms', ".json")

setup(name="mosaicml",
version="0.4.1",
version="0.5.0",
author="MosaicML",
author_email="team@mosaicml.com",
description="Composer provides well-engineered implementations of efficient training methods to give "
Expand Down

0 comments on commit 00e51ba

Please sign in to comment.