Skip to content

Commit

Permalink
Bump version: 0.2.5 → 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hukkinj1 committed May 20, 2020
1 parent 7e0d98e commit 2318603
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[bumpversion]
commit = True
tag = True
current_version = 0.2.5
current_version = 0.2.6

[bumpversion:file:src/main.rs]
search = .version("{current_version}") // DO NOT EDIT THIS LINE MANUALLY
replace = .version("{new_version}") // DO NOT EDIT THIS LINE MANUALLY

[bumpversion:file:Cargo.lock]
search = name = "dotvanity"
version = "{current_version}"
version = "{current_version}"
replace = name = "dotvanity"
version = "{new_version}"
version = "{new_version}"

[bumpversion:file:Cargo.toml]
search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY
Expand Down
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 = "dotvanity"
version = "0.2.5" # DO NOT EDIT THIS LINE MANUALLY
version = "0.2.6" # DO NOT EDIT THIS LINE MANUALLY
authors = ["Taneli Hukkinen <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# dotvanity

<!--- Don't edit the version line below manually. Let bump2version do it for you. -->
> Version 0.2.5
> Version 0.2.6
> CLI tool for generating [Substrate](https://substrate.dev/) (or [Polkadot](https://polkadot.network/)) vanity addresses
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn generate_matching_wallet(

fn main() {
let matches = clap::App::new("dotvanity")
.version("0.2.5") // DO NOT EDIT THIS LINE MANUALLY
.version("0.2.6") // DO NOT EDIT THIS LINE MANUALLY
.author("Taneli Hukkinen <[email protected]>")
.about("Polkadot/Substrate vanity address generator")
.arg(
Expand Down

0 comments on commit 2318603

Please sign in to comment.