prmt 0.2.7

Ultra-fast, customizable shell prompt generator with zero-copy parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
setup:
    git config core.hooksPath .githooks

version bump:
    cargo set-version --bump {{bump}}
    @VERSION=$(cargo pkgid | sed 's/.*@//') && \
        git add Cargo.toml Cargo.lock && \
        git commit -m "v$VERSION"

publish:
    @VERSION=$(cargo pkgid | sed 's/.*@//') && \
        git tag "v$VERSION" && \
        git push && \
        git push origin "v$VERSION"
        cargo publish