diff --git a/.github/workflows/static.yaml b/.github/workflows/static.yaml index 1026a00b..53594100 100644 --- a/.github/workflows/static.yaml +++ b/.github/workflows/static.yaml @@ -46,13 +46,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v4 with: - path: | - './www' - '!**/target' - '!**/pkg' - '!**/src' - '!**/Cargo.toml' - '!**/Cargo.lock' + path: './www' - name: Deploy to GitHub Pages id: deployment diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ed3a299..7f36f66f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +[0.0.3](https://github.com/raphjaph/bip322/releases/tag/0.0.3) - 2024-08-09 +--------------------------------------------------------------------------- + +### Added +- Once again Github Actions (#14) +- Exclude some files from static site (#13) +- Fix deployment (#12) +- Refine deployment (#11) +- Compiling to wasm for website (#9) +- Add landing page (#8) +- Release 0.0.2 (#7) + [0.0.2](https://github.com/raphjaph/bip322/releases/tag/0.0.2) - 2024-08-02 --------------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index 85614b38..aad03d26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ checksum = "98f7eed2b2781a6f0b5c903471d48e15f56fb4e1165df8a9a2337fd1a59d45ea" [[package]] name = "bip322" -version = "0.0.2" +version = "0.0.3" dependencies = [ "base64", "bitcoin", diff --git a/Cargo.toml b/Cargo.toml index 4a674173..a0b90cf4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bip322" -version = "0.0.2" +version = "0.0.3" edition = "2021" description = "Implements BIP322 generic message signing" license = "CC0-1.0"