Skip to content

Commit 00e51ba

Browse files
committed
Bump version to 0.5.0
1 parent be5b3bc commit 00e51ba

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

composer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
from composer.models import ComposerModel as ComposerModel
1616
from composer.trainer import Trainer as Trainer
1717

18-
__version__ = "0.4.1"
18+
__version__ = "0.5.0"

composer/core/state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def null(precision):
5050

5151

5252
def _ensure_backwards_compatible_checkpointing(state_dict: types.StateDict):
53-
# v0.4.1 removed the leading underscores for the keys in the state_dict
53+
# v0.5.0 removed the leading underscores for the keys in the state_dict
5454
# It also renamed _is_model_ddp_wrapped to is_model_ddp
5555
state = {}
5656
for k, v in state_dict.items():

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package:
44
name: mosaicml
5-
version: "0.4.1"
5+
version: "0.5.0"
66

77
source:
88
git_url: ./

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def package_files(prefix: str, directory: str, extension: str):
158158
composer_data_files += package_files('composer', 'algorithms', ".json")
159159

160160
setup(name="mosaicml",
161-
version="0.4.1",
161+
version="0.5.0",
162162
author="MosaicML",
163163
author_email="[email protected]",
164164
description="Composer provides well-engineered implementations of efficient training methods to give "

0 commit comments

Comments
 (0)