Skip to content

Commit fa8a5e0

Browse files
authored
Merge pull request #3740 from autonomys/bump_client_versions
bump client versions to 0.1.6
2 parents f33c2b6 + 2be66d3 commit fa8a5e0

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
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.

crates/subspace-bootstrap-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subspace-bootstrap-node"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = [
55
"Nazar Mokrynskyi <nazar@mokrynskyi.com>",
66
"Shamil Gadelshin <shamilgadelshin@gmail.com>"

crates/subspace-farmer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "subspace-farmer"
33
description = "Farmer for the Subspace Network Blockchain"
44
license = "0BSD"
5-
version = "0.1.5"
5+
version = "0.1.6"
66
authors = ["Nazar Mokrynskyi <nazar@mokrynskyi.com>"]
77
edition.workspace = true
88
include = [

crates/subspace-gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subspace-gateway"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = [
55
"Teor <teor@riseup.net>",
66
"Shamil Gadelshin <shamilgadelshin@gmail.com>"

crates/subspace-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subspace-node"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Subspace Labs <https://subspace.network>"]
55
description = "A Subspace Network Blockchain node."
66
edition.workspace = true

domains/client/domain-operator/src/tests.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6441,9 +6441,9 @@ async fn test_skip_empty_bundle_production() {
64416441
assert_eq!(alice.client.info().best_number, domain_block_number + 1);
64426442
}
64436443

6444-
// This test is more unstable on macOS
6444+
// This test is more unstable on macOS and windows
64456445
// TODO: find and fix the source of the instability (#3385)
6446-
#[cfg(not(target_os = "macos"))]
6446+
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
64476447
#[tokio::test(flavor = "multi_thread")]
64486448
async fn test_bad_receipt_chain() {
64496449
let directory = TempDir::new().expect("Must be able to create temporary directory");
@@ -8193,6 +8193,7 @@ async fn test_current_block_number_used_as_new_account_nonce() {
81938193
// This test is unstable on Windows, it likely contains a filesystem race condition between stopping
81948194
// the node `bob`, and restarting that node with the same data directory.
81958195
#[tokio::test(flavor = "multi_thread")]
8196+
#[cfg(not(target_os = "windows"))]
81968197
async fn test_domain_node_starting_check() {
81978198
use futures::FutureExt;
81988199
let directory = TempDir::new().expect("Must be able to create temporary directory");

0 commit comments

Comments
 (0)