Releases: m-YoC/mdtk
Releases · m-YoC/mdtk
mdtk v0.7.0
mdtk v0.6.0
- Add some attributes
- Add new options
mdtk v0.5.3
add mdtkconfig parameter: nest_max_depth
bugfix: stdin does not work
mdtk v0.5.2
fix exec output
mdtk v0.5.1
add new embedded comment: #func>
```task::f
#args> v, u
echo $v $u
```
```task::main
#func> get f -- v=$1 u=world
echo $(get hello)
```
$ mdtk main
-> hello world
mdtk v0.5.0
Add and Modify
- Add code block type: group-order configuration.
- Add group viewer of taskfile.
- Add embedded comment
#desc>
.- Additional description can be written.
- Can use
-
,--
,---
, ... before <description> of task definition.- Not displayed.
- As before, it doesn't have to write.
Sample is as follows.
```bash task:mdtk:hello -- description
#desc> additional description
echo hello mdtk
```
```taskconfig:group-order
mdtk: 10
```
mdtk v0.4.1
- Add and Modify
- Add safe writing method of argument. ->
arg:value
arg=value
can still be used as before.
- Add config.
- shell
- default:
$SHELL
- default:
- script head
set
string- default:
set -euo pipefail
- default:
- shell
- Add readable task head type; can write some language names. (ex: as follows)
- sh, bash...
- Ignored when reading (Not run in the environment described here)
- Add safe writing method of argument. ->
```bash task::hello
echo hello
```
mdtk 0.4.0
- Add and modify
- Add library.
- Add config file.
- (This file is not required.)
- Fix options.
mdtk version 0.3.0
- Add and modify
- new option: --quiet, --script
- expansion to writing short hand options
- group task help
mdtk version 0.2.0
- add and fix some options.
- add cache.
- add pager view of help/manual.