File tree 4 files changed +43
-2
lines changed
4 files changed +43
-2
lines changed Original file line number Diff line number Diff line change
1
+ Changelog
2
+ =========
3
+
4
+ [ 0.0.2] ( https://github.com/raphjaph/bip322/releases/tag/0.0.2 ) - 2024-08-02
5
+ ---------------------------------------------------------------------------
6
+
7
+ ### Added
8
+ - Full Bip322 signatures (#5 )
9
+ - Add Rust formatting config and README (#6 )
10
+ - Add justfile (#2 )
11
+ - Add Github Workflows (#1 )
12
+ - Compiles and tests pass
13
+ - Initial commit
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bip322"
3
- version = " 0.0.1 "
3
+ version = " 0.0.2 "
4
4
edition = " 2021"
5
5
description = " Implements BIP322 generic message signing"
6
6
license = " CC0-1.0"
Original file line number Diff line number Diff line change @@ -19,3 +19,31 @@ outdated:
19
19
20
20
coverage :
21
21
cargo llvm-cov
22
+
23
+ prepare-release revision = ' master':
24
+ #!/usr/bin/env bash
25
+ set -euxo pipefail
26
+ git checkout {{ revision }}
27
+ git pull origin {{ revision }}
28
+ echo >> CHANGELOG.md
29
+ git log --pretty=' format:- %s' >> CHANGELOG.md
30
+ $EDITOR CHANGELOG.md
31
+ $EDITOR Cargo.toml
32
+ version=` sed -En ' s/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1 `
33
+ cargo check
34
+ git checkout -b release-$version
35
+ git add -u
36
+ git commit -m " Release $version"
37
+ gh pr create --web
38
+
39
+ publish-release revision = ' master':
40
+ #!/usr/bin/env bash
41
+ set -euxo pipefail
42
+ rm -rf tmp/ release
43
+ git clone https:// github.com/ raphjaph/ bip322. git tmp/ release
44
+ cd tmp/ release
45
+ git checkout {{ revision }}
46
+ cargo publish
47
+ cd ../ ..
48
+ rm -rf tmp/ release
49
+
You can’t perform that action at this time.
0 commit comments