Skip to content

Commit 4444093

Browse files
committed
chore: release v0.1.0-beta.3
1 parent eb83dc7 commit 4444093

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.1.0-beta.2"
6+
version = "0.1.0-beta.3"
77
edition = "2021"
88
authors = ["Athex Web3"]
99
description = "A high-performance, secure, and beautiful Ethereum vanity address generator"

Formula/vanity_crypto.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class VanityCrypto < Formula
22
desc "High-performance, secure, and beautiful Ethereum vanity address generator"
33
homepage "https://github.com/athexweb3/vanity_crypto"
4-
version "0.1.0-beta.2"
4+
version "0.1.0-beta.3"
55

66
if OS.mac? && Hardware::CPU.arm?
77
url "https://github.com/athexweb3/vanity_crypto/releases/download/v#{version}/vc-macos-arm64"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vanity_crypto",
3-
"version": "0.1.0-beta.2",
3+
"version": "0.1.0-beta.3",
44
"description": "High-performance, secure, and beautiful Crypto vanity address generator",
55
"bin": {
66
"vc": "npm/bin/vc"
@@ -34,4 +34,4 @@
3434
"prompts": "^2.4.2",
3535
"semver": "^7.7.3"
3636
}
37-
}
37+
}

scoop/vanity_crypto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.0-beta.2",
2+
"version": "0.1.0-beta.3",
33
"description": "High-performance Ethereum vanity address generator",
44
"homepage": "https://github.com/athexweb3/vanity_crypto",
55
"license": "MIT",

scripts/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const semver = require('semver');
66

77
const pkgPath = path.join(__dirname, '..', 'package.json');
88
const cargoPath = path.join(__dirname, '..', 'Cargo.toml');
9-
const brewPath = path.join(__dirname, '..', 'homebrew', 'vanity_crypto.rb');
9+
const brewPath = path.join(__dirname, '..', 'Formula', 'vanity_crypto.rb');
1010
const scoopPath = path.join(__dirname, '..', 'scoop', 'vanity_crypto.json');
1111

1212
const pkg = require(pkgPath);

0 commit comments

Comments
 (0)