Skip to content

Releases: m-YoC/mdtk

mdtk v0.7.0

06 Jul 08:23
Compare
Choose a tag to compare

many fixes and additions

mdtk v0.6.0

12 Jun 18:20
Compare
Choose a tag to compare
  • Add some attributes
  • Add new options

mdtk v0.5.3

08 Jun 15:20
Compare
Choose a tag to compare

add mdtkconfig parameter: nest_max_depth
bugfix: stdin does not work

mdtk v0.5.2

08 Jun 07:50
Compare
Choose a tag to compare

fix exec output

mdtk v0.5.1

07 Jun 17:15
Compare
Choose a tag to compare

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

07 Jun 10:29
Compare
Choose a tag to compare

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

05 Jun 10:07
Compare
Choose a tag to compare
  • Add and Modify
    • Add safe writing method of argument. -> arg:value
      • arg=value can still be used as before.
    • Add config.
      • shell
        • default: $SHELL
      • script head set string
        • default: set -euo pipefail
    • 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)
```bash task::hello
echo hello
```

mdtk 0.4.0

04 Jun 21:29
Compare
Choose a tag to compare
  • Add and modify
    • Add library.
    • Add config file.
      • (This file is not required.)
    • Fix options.

mdtk version 0.3.0

02 Jun 08:56
Compare
Choose a tag to compare
  • Add and modify
    • new option: --quiet, --script
    • expansion to writing short hand options
    • group task help

mdtk version 0.2.0

30 May 06:28
Compare
Choose a tag to compare
  • add and fix some options.
  • add cache.
  • add pager view of help/manual.