From 807a3c4e6f0b34730fa8be25496ec1b75ae04f09 Mon Sep 17 00:00:00 2001 From: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Sun, 7 May 2023 22:19:35 +0100 Subject: [PATCH] Bump to v0.1.2 to trigger release build --- .github/workflows/release.yaml | 11 ++++++----- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75955a0..9f1f0b5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,8 @@ jobs: - uses: actions/checkout@v3 - uses: taiki-e/create-gh-release-action@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for creating GitHub Releases. + # GitHub token for creating GitHub Releases. + token: ${{ secrets.GITHUB_TOKEN }} upload-assets: strategy: @@ -29,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - uses: taiki-e/upload-rust-binary-action@v1 with: - bin: namehash # Comma-separated list of binary names to build and upload. - tar: none # On which platform to distribute the `.tar.gz` file. - zip: none # On which platform to distribute the `.zip` file. - token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for uploading assets to GitHub Releases. + # Comma-separated list of binary names to build and upload. + bin: namehash + # GitHub token for uploading assets to GitHub Releases. + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index 6b48362..b99c6ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -193,7 +193,7 @@ checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" [[package]] name = "namehash" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "hex", diff --git a/Cargo.toml b/Cargo.toml index ce43686..8fc2434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "namehash" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "CLI program for hashing domain names according to EIP-137" homepage = "https://github.com/supleed2/namehash-rs"