Skip to content

Commit

Permalink
Release 0.0.2 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph authored Aug 2, 2024
1 parent 9934172 commit e28f44a
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Changelog
=========

[0.0.2](https://github.com/raphjaph/bip322/releases/tag/0.0.2) - 2024-08-02
---------------------------------------------------------------------------

### Added
- Full Bip322 signatures (#5)
- Add Rust formatting config and README (#6)
- Add justfile (#2)
- Add Github Workflows (#1)
- Compiles and tests pass
- Initial commit
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bip322"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
description = "Implements BIP322 generic message signing"
license = "CC0-1.0"
Expand Down
28 changes: 28 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,31 @@ outdated:

coverage:
cargo llvm-cov

prepare-release revision='master':
#!/usr/bin/env bash
set -euxo pipefail
git checkout {{ revision }}
git pull origin {{ revision }}
echo >> CHANGELOG.md
git log --pretty='format:- %s' >> CHANGELOG.md
$EDITOR CHANGELOG.md
$EDITOR Cargo.toml
version=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
cargo check
git checkout -b release-$version
git add -u
git commit -m "Release $version"
gh pr create --web
publish-release revision='master':
#!/usr/bin/env bash
set -euxo pipefail
rm -rf tmp/release
git clone https://github.com/raphjaph/bip322.git tmp/release
cd tmp/release
git checkout {{ revision }}
cargo publish
cd ../..
rm -rf tmp/release

0 comments on commit e28f44a

Please # to comment.