Skip to content

Commit f29fdea

Browse files
Merge pull request #36 from dotflow-io/release/0.7.0
Release/0.7.0
2 parents cfd71d4 + 5967e78 commit f29fdea

File tree

5 files changed

+28
-23
lines changed

5 files changed

+28
-23
lines changed

LAST_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.0
1+
0.7.2.dev-1

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -111,25 +111,25 @@ workflow.start()
111111

112112
## More Examples
113113

114-
| | Example |
115-
|--| -------------------------------------------------------------------------------------- |
116-
|01| [simple_class_workflow](examples/simple_class_workflow.py) |
117-
|02| [simple_function_workflow_with_error](examples/simple_function_workflow_with_error.py) |
118-
|03| [simple_function_workflow](examples/simple_function_workflow.py) |
119-
|04| [step_class_result_context](examples/step_class_result_context.py) |
120-
|05| [step_class_result_storage](examples/step_class_result_storage.py) |
121-
|06| [step_class_result_task](examples/step_class_result_task.py) |
122-
|07| [step_function_result_context](examples/step_function_result_context.py) |
123-
|08| [step_function_result_storage](examples/step_function_result_storage.py) |
124-
|09| [step_function_result_task](examples/step_function_result_task.py) |
125-
|10| [step_with_initial_context](examples/step_with_initial_context.py) |
126-
|11| [step_with_many_contexts](examples/step_with_many_contexts.py) |
127-
|12| [step_with_previous_context](examples/step_with_previous_context.py) |
128-
|13| [workflow_keep_going_true](examples/workflow_keep_going_true.py) |
129-
|14| [workflow_step_callback](examples/workflow_step_callback.py) |
130-
|15| [workflow_with_callback_failure](examples/workflow_with_callback_failure.py) |
131-
|16| [workflow_with_callback_success](examples/workflow_with_callback_success.py) |
132-
|17| [workflow_with_retry](examples/workflow_with_retry.py) |
114+
| | Example |
115+
|--| ---------------------------------------------------------------------------------------------------------------------------------------- |
116+
|01| [simple_class_workflow](https://github.com/dotflow-io/dotflow/blob/master/examples/simple_class_workflow.py) |
117+
|02| [simple_function_workflow_with_error](https://github.com/dotflow-io/dotflow/blob/master/examples/simple_function_workflow_with_error.py) |
118+
|03| [simple_function_workflow](https://github.com/dotflow-io/dotflow/blob/master/examples/simple_function_workflow.py) |
119+
|04| [step_class_result_context](https://github.com/dotflow-io/dotflow/blob/master/examples/step_class_result_context.py) |
120+
|05| [step_class_result_storage](https://github.com/dotflow-io/dotflow/blob/master/examples/step_class_result_storage.py) |
121+
|06| [step_class_result_task](https://github.com/dotflow-io/dotflow/blob/master/examples/step_class_result_task.py) |
122+
|07| [step_function_result_context](https://github.com/dotflow-io/dotflow/blob/master/examples/step_function_result_context.py) |
123+
|08| [step_function_result_storage](https://github.com/dotflow-io/dotflow/blob/master/examples/step_function_result_storage.py) |
124+
|09| [step_function_result_task](https://github.com/dotflow-io/dotflow/blob/master/examples/step_function_result_task.py) |
125+
|10| [step_with_initial_context](https://github.com/dotflow-io/dotflow/blob/master/examples/step_with_initial_context.py) |
126+
|11| [step_with_many_contexts](https://github.com/dotflow-io/dotflow/blob/master/examples/step_with_many_contexts.py) |
127+
|12| [step_with_previous_context](https://github.com/dotflow-io/dotflow/blob/master/examples/step_with_previous_context.py) |
128+
|13| [workflow_keep_going_true](https://github.com/dotflow-io/dotflow/blob/master/examples/workflow_keep_going_true.py) |
129+
|14| [workflow_step_callback](https://github.com/dotflow-io/dotflow/blob/master/examples/workflow_step_callback.py) |
130+
|15| [workflow_with_callback_failure](https://github.com/dotflow-io/dotflow/blob/master/examples/workflow_with_callback_failure.py) |
131+
|16| [workflow_with_callback_success](https://github.com/dotflow-io/dotflow/blob/master/examples/workflow_with_callback_success.py) |
132+
|17| [workflow_with_retry](https://github.com/dotflow-io/dotflow/blob/master/examples/workflow_with_retry.py) |
133133

134134
## Commit Style
135135

docs/nav/development/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## v0.7.0
4+
5+
- [📦 PyPI - Build 0.7.0](https://github.com/dotflow-io/dotflow/releases/tag/v0.7.0)
6+
- [📌 Communication layer implementation](https://github.com/dotflow-io/dotflow/pull/34)
7+
38
## v0.6.0
49

510
- [📦 PyPI - Build 0.6.0](https://github.com/dotflow-io/dotflow/releases/tag/v0.6.0)

dotflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Dotflow __init__ module."""
22

3-
__version__ = "0.6.0"
3+
__version__ = "0.7.2.dev-1"
44
__description__ = "🎲 Dotflow turns an idea into flow!"
55

66
from .core.action import Action as action

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dotflow"
3-
version = "0.6.0"
3+
version = "0.7.2.dev-1"
44
authors = [
55
{ name="Fernando Celmer", email="email@fernandocelmer.com" },
66
]
@@ -27,7 +27,7 @@ Documentation = "https://github.com/dotflow-io/dotflow/blob/master/README.md"
2727

2828
[tool.poetry]
2929
name = "dotflow"
30-
version = "0.6.0"
30+
version = "0.7.2.dev-1"
3131
description = "🎲 Dotflow turns an idea into flow!"
3232
authors = ["Fernando Celmer <email@fernandocelmer.com>"]
3333
readme = "README.md"

0 commit comments

Comments
 (0)