Skip to content

Commit 8f286c9

Browse files
committed
🏷️ Bump up to version 0.0.67 -> 0.0.68.
1 parent 1e1f190 commit 8f286c9

3 files changed

Lines changed: 48 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
## Latest Changes
44

5+
## 0.0.68
6+
7+
### :sparkles: Features
8+
9+
- :dart: feat: improve logging module for overridable from child package (#49).
10+
11+
### :broom: Deprecate & Clean
12+
13+
- :recycle: clean: remove unuse function in utils module.
14+
15+
### :package: Build & Workflow
16+
17+
- :package: build: bump pydantic from 2.11.4 to 2.11.5 (#50)
18+
19+
### :book: Documentations
20+
21+
- :page_facing_up: docs: clean and update workflow topic.
22+
- :page_facing_up: docs: update docs on stages topic.
23+
- :page_facing_up: docs: update draft dockerfile that run with dynamic python version.
24+
- :page_facing_up: docs: update mkdocs on job and event sections.
25+
- :page_facing_up: docs: update stage mkdocs.
26+
527
## 0.0.67
628

729
### :stars: Highlight Features

src/ddeutil/workflow/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = "0.0.67"
1+
__version__: str = "0.0.68"
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
tmp-wf-call-return-type:
2+
type: Workflow
3+
jobs:
4+
first-job:
5+
stages:
6+
- name: "Necessary argument do not pass"
7+
id: args-necessary
8+
uses: tasks/private-args-task@demo
9+
with:
10+
params:
11+
run_mode: "T"
12+
second-job:
13+
stages:
14+
- name: "Extract & Load Local System"
15+
id: extract-load
16+
uses: tasks/simple-task@demo
17+
with:
18+
source: src
19+
sink: sink
20+
- name: "Extract & Load Local System"
21+
id: async-extract-load
22+
uses: tasks/simple-task-async@demo
23+
with:
24+
source: src
25+
sink: sink

0 commit comments

Comments
 (0)