Skip to content

Commit

Permalink
one last version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
katrogan committed Jun 3, 2020
1 parent fc98332 commit 7ba33f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flytekit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

import flytekit.plugins

__version__ = '0.8.3'
__version__ = '0.9.0b0'
2 changes: 1 addition & 1 deletion flytekit/common/launch_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def _python_std_input_map_to_literal_map(self, inputs):
}
)

@_deprecated(reason="Use launch_with_literals instead", version='0.8.3')
@_deprecated(reason="Use launch_with_literals instead", version='0.9.0')
def execute_with_literals(self, project, domain, literal_inputs, name=None, notification_overrides=None,
label_overrides=None, annotation_overrides=None):
"""
Expand Down
4 changes: 2 additions & 2 deletions flytekit/common/mixins/launchable.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def launch(self, project, domain, inputs=None, name=None, notification_overrides
annotation_overrides=annotation_overrides,
)

@_deprecated(reason="Use launch instead", version='0.8.3')
@_deprecated(reason="Use launch instead", version='0.9.0')
def execute(self, project, domain, inputs=None, name=None, notification_overrides=None, label_overrides=None,
annotation_overrides=None):
"""
Expand Down Expand Up @@ -77,7 +77,7 @@ def launch_with_literals(self, project, domain, literal_inputs, name=None, notif
"""
pass

@_deprecated(reason="Use launch_with_literals instead", version='0.8.3')
@_deprecated(reason="Use launch_with_literals instead", version='0.9.0')
def execute_with_literals(self, project, domain, literal_inputs, name=None, notification_overrides=None,
label_overrides=None, annotation_overrides=None):
"""
Expand Down
2 changes: 1 addition & 1 deletion flytekit/engines/flyte/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def register(self, identifier):
except _user_exceptions.FlyteEntityAlreadyExistsException:
pass

@_deprecated(reason="Use launch instead", version='0.8.3')
@_deprecated(reason="Use launch instead", version='0.9.0')
def execute(self, project, domain, name, inputs, notification_overrides=None, label_overrides=None,
annotation_overrides=None):
"""
Expand Down

0 comments on commit 7ba33f0

Please sign in to comment.