Bump to v0.1.2 to trigger release build

This commit is contained in:
Aadi Desai 2023-05-07 22:19:35 +01:00
parent f99e6e0e00
commit 807a3c4e6f
Signed by: supleed2
SSH key fingerprint: SHA256:CkbNRs0yVzXEiUp2zd0PSxsfRUMFF9bLlKXtE1xEbKM
3 changed files with 8 additions and 7 deletions

View file

@ -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 }}

2
Cargo.lock generated
View file

@ -193,7 +193,7 @@ checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
[[package]]
name = "namehash"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"clap",
"hex",

View file

@ -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"