Skip to content

Commit

Permalink
Merge branch 'master' into fix-data-store-path
Browse files Browse the repository at this point in the history
  • Loading branch information
kmd-fl committed Feb 2, 2024
2 parents f14387d + e61b546 commit c7c2de1
Show file tree
Hide file tree
Showing 13 changed files with 58 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.18.0"
".": "0.18.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.18.1](https://github.com/fluencelabs/nox/compare/nox-v0.18.0...nox-v0.18.1) (2024-01-31)


### Bug Fixes

* **deps:** update fluence-spell to v0.6.10 ([#2049](https://github.com/fluencelabs/nox/issues/2049)) ([5dc200e](https://github.com/fluencelabs/nox/commit/5dc200e59fa16c7abd3c3cc9c9063eca76cb51cc))

## [0.18.0](https://github.com/fluencelabs/nox/compare/nox-v0.17.0...nox-v0.18.0) (2024-01-31)


Expand Down
72 changes: 36 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ tokio-stream = "0.1.14"
tokio-util = "0.7.10"
uuid = { version = "1.7.0", features = ["v4"] }
derivative = "2.2.0"
serde_json = { version = "1.0.111", features = ["preserve_order"] }
serde_json = { version = "1.0.113", features = ["preserve_order"] }
fstrings = "0.2.3"
maplit = "1.0.2"
log = "0.4.20"
Expand All @@ -142,7 +142,7 @@ tracing-subscriber = "0.3.18"
console-subscriber = "0.2.0"
futures = "0.3.30"
thiserror = "1.0.56"
serde = "1.0.195"
serde = "1.0.196"
toml = "0.5.10"
itertools = "0.12.0"
humantime-serde = "1.1.1"
Expand Down
4 changes: 2 additions & 2 deletions aquamarine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ tokio-util = { workspace = true, features = ["rt"] }
tracing = { workspace = true }
serde_json = { workspace = true }
parking_lot = { workspace = true }
chrono = "0.4.31"
bs58 = { workspace = true }
chrono = "0.4.33"
base64 = { workspace = true }
thiserror = { workspace = true }
humantime = "2.1.0"
anyhow = "1.0.79"
Expand Down
2 changes: 1 addition & 1 deletion crates/connected-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libp2p = { workspace = true, features = ["identify"] }
libp2p-swarm = { workspace = true }
tokio = { workspace = true }
futures = { workspace = true }
serde = { version = "1.0.195", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { workspace = true }
log = { workspace = true }
derivative = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/libp2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ multihash = { workspace = true, features = ["serde-codec"] }
futures = { workspace = true }
futures-util = "0.3.30"
tokio = { workspace = true, optional = true }
serde = { version = "1.0.195", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { workspace = true }
bs58 = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/peer-metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ particle-execution = { workspace = true }
tokio = { workspace = true, features = ["macros", "tracing"] }
tokio-stream = { workspace = true }
futures = { workspace = true }
serde = { version = "1.0.195", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { workspace = true }
parking_lot = { workspace = true }
6 changes: 3 additions & 3 deletions crates/server-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ libp2p = { workspace = true }
libp2p-metrics = { workspace = true }
libp2p-connection-limits = { workspace = true }

serde = { version = "1.0.195", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }
humantime-serde = { workspace = true }
serde_json = "1.0.111"
serde_json = "1.0.113"
rand = { workspace = true }
clap = { version = "4.4.18", features = ["derive", "string"] }
bs58 = { workspace = true }
Expand All @@ -30,7 +30,7 @@ num_cpus = "1.16.0"
eyre = { workspace = true }
derivative = { workspace = true }
bytesize = { version = "1.3.0", features = ["serde"] }
serde_with = "3.4.0"
serde_with = "3.6.0"
config = { version = "0.13.4", default-features = false, features = ["toml"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/system-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
aqua-ipfs-distro = "=0.5.30"
decider-distro = "=0.5.14"
decider-distro = "=0.5.16"
registry-distro = "=0.9.4"
trust-graph-distro = "=0.4.11"

Expand Down
2 changes: 1 addition & 1 deletion nox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nox"
version = "0.18.0"
version = "0.18.1"
authors = ["Fluence Labs"]
description = "Node implementing peer functionality in the Fluence p2p network"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion particle-modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ marine-it-parser = { workspace = true }
fluence-app-service = { workspace = true }
marine-utils = { workspace = true }

serde = { version = "1.0.195", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { workspace = true }
toml = "0.5.10"
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion particle-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ futures = { workspace = true }
eyre = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true }
serde_derive = "1.0.195"
serde_derive = "1.0.196"
humantime-serde = { workspace = true }
log = { workspace = true }
derivative = { workspace = true }
Expand Down

0 comments on commit c7c2de1

Please sign in to comment.