prmt 0.4.0

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=$(grep -m1 '^version' Cargo.toml | cut -d'"' -f2) && \
        git add Cargo.toml Cargo.lock && \
        git commit -m "v$VERSION" && \
        git push

publish:
    @VERSION=$(grep -m1 '^version' Cargo.toml | cut -d'"' -f2) && \
        git tag -am "v$VERSION" "v$VERSION" && \
        git push --tags && \
        cargo publish