Skip to content

Commit

Permalink
Bump version to 0.13.0.dev0 (#1549)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg committed Sep 25, 2024
1 parent 151a2e2 commit 722526d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion llmfoundry/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

"""The LLM Foundry Version."""

__version__ = '0.12.0.dev0'
__version__ = '0.13.0.dev0'
2 changes: 1 addition & 1 deletion llmfoundry/command_utils/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def evaluate_model(
warnings.warn(
VersionedDeprecationWarning(
'The argument fsdp_config is deprecated. Please use parallelism_config instead.',
remove_version='0.13.0',
remove_version='0.14.0',
),
)
if fsdp_config and parallelism_config:
Expand Down
2 changes: 1 addition & 1 deletion llmfoundry/models/hf/model_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __init__(
warnings.warn(
VersionedDeprecationWarning(
'`HuggingFaceModelWithFSDP` is deprecated. In the future please use `BaseHuggingFaceModel`.',
remove_version='0.13.0',
remove_version='0.14.0',
),
)
super().__init__(
Expand Down

0 comments on commit 722526d

Please sign in to comment.