Skip to content

Commit 6615959

Browse files
bump version (#293)
1 parent 4784848 commit 6615959

11 files changed

Lines changed: 26 additions & 37 deletions

File tree

Cargo.lock

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

build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
let
44
# Pname defines the name of the package and will decide the output of this expression
55
pname = "floresta-node";
6-
version = "0.6.0";
6+
version = "0.7.0";
77

88
# This sets the rustc and cargo to the ones from the florestaRust.
99
#

crates/floresta-chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-chain"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]
66
description = """

crates/floresta-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-cli"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]
66
license = "MIT"

crates/floresta-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-common"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Common types and functions for Floresta"
66
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]

crates/floresta-compact-filters/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-compact-filters"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Davidson Sousa <davidson.lucas.souza@outlook.com>"]
55
edition = "2018"
66
homepage = "https://github.com/davidson-souza/floresta"

crates/floresta-electrum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-electrum"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]
66
description = """

crates/floresta-watch-only/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-watch-only"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "A simple, lightweight and Electrum-First, watch-only wallet"
66
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]

crates/floresta-wire/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta-wire"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]
66
description = """

crates/floresta/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "floresta"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Davidson Souza <davidson.lucas.souza@outlook.com>"]
55
edition = "2021"
66
description = """
@@ -23,11 +23,11 @@ keywords = ["bitcoin", "utreexo", "node", "blockchain", "rust"]
2323
categories = ["cryptography::cryptocurrencies"]
2424

2525
[dependencies]
26-
floresta-common = { path = "../floresta-common", version = "0.2.0" }
27-
floresta-chain = { path = "../floresta-chain", version = "0.2.0" }
28-
floresta-wire = { path = "../floresta-wire", version = "0.2.0" }
29-
floresta-watch-only = { path = "../floresta-watch-only", optional = true, version = "0.2.0" }
30-
floresta-electrum = { path = "../floresta-electrum", optional = true, version = "0.2.0" }
26+
floresta-common = { path = "../floresta-common", version = "0.3.0" }
27+
floresta-chain = { path = "../floresta-chain", version = "0.3.0" }
28+
floresta-wire = { path = "../floresta-wire", version = "0.3.0" }
29+
floresta-watch-only = { path = "../floresta-watch-only", optional = true, version = "0.3.0" }
30+
floresta-electrum = { path = "../floresta-electrum", optional = true, version = "0.3.0" }
3131

3232
[dev-dependencies]
3333
rustreexo = "0.3.0"
@@ -38,7 +38,7 @@ bitcoin = { version = "0.32", features = [
3838
"bitcoinconsensus",
3939
], default-features=false }
4040

41-
floresta = { version = "0.2.0", path = "../floresta", features = [
41+
floresta = { version = "0.3.0", path = "../floresta", features = [
4242
"bitcoinconsensus",
4343
"memory-database",
4444
"electrum-server",

0 commit comments

Comments
 (0)