Skip to content

v0.7.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Mar 01:39
· 522 commits to main since this release

What's Changed

  • feat: less constrained on cmd name by @sigoden in #18
    cmd/fn name can contain many other characters.
# @cmd
foo_bar() {
    echo "foo_bar"
}
# @cmd
foo-bar() {
    echo "foo-bar"
}
# @cmd
foo.bar() {
    echo "foo.bar"
}
# @cmd
foo@bar() {
    echo "foo@bar"
}
# @cmd
foo:bar() {
    echo "foo:bar"
}

eval "$(argc $0 "$@")"

Full Changelog: v0.6.0...v0.7.0