Skip to content

Commit e28f44a

Browse files
authored
Release 0.0.2 (#7)
1 parent 9934172 commit e28f44a

File tree

4 files changed

+43
-2
lines changed

4 files changed

+43
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bip322"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
description = "Implements BIP322 generic message signing"
66
license = "CC0-1.0"

justfile

+28
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,31 @@ outdated:
1919

2020
coverage:
2121
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+

0 commit comments

Comments
 (0)