diff options
Diffstat (limited to 'ci/how2publish.txt')
-rw-r--r-- | ci/how2publish.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ci/how2publish.txt b/ci/how2publish.txt index 57addb2..0560f54 100644 --- a/ci/how2publish.txt +++ b/ci/how2publish.txt @@ -1,14 +1,16 @@ # ----------- To do a release --------- # Compare times of runs to check no drastic slow down: -# time target/release/dust ~/dev -# time dust ~dev +# hyperfine 'target/release/dust /home/andy' +# hyperfine 'dust /home/andy' # edit version in cargo.toml +# cargo build --release +# commit changed files # tag a commit and push (increment version in Cargo.toml first): # git tag v0.4.5 # git push origin v0.4.5 # cargo publish to put it in crates.io - + # To install locally [Do before pushing it] #cargo install --path . |