Skip to content

Commit b6fb250

Browse files
authored
chore: dump version for release (#1296)
1 parent 6437e64 commit b6fb250

File tree

14 files changed

+61
-48
lines changed

14 files changed

+61
-48
lines changed

Cargo.lock

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

bin/nanocl/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nanocl"
3-
version = "0.16.3"
3+
version = "0.17.0"
44
edition = "2024"
55
authors = ["nanocl contributors <team@next-hat.com>"]
66
description = "Container and virtual machine orchestrator"
@@ -32,10 +32,10 @@ chrono = { version = "0.4", default-features = false, features = [
3232
"clock",
3333
] }
3434
bollard-next = { version = "0.18.1" }
35-
nanocl_utils = { version = "0.7", features = ["build_tools"] }
36-
nanocld_client = { version = "0.16" }
35+
nanocl_utils = { version = "0.8", features = ["build_tools"] }
36+
nanocld_client = { version = "0.17" }
3737
serde_json = "1.0"
38-
nanocl_error = { version = "0.5", features = ["io", "serde_json"] }
38+
nanocl_error = { version = "0.6", features = ["io", "serde_json"] }
3939

4040
[dependencies]
4141
bollard-next = { version = "0.18.1" }
@@ -56,8 +56,8 @@ chrono = { version = "0.4", default-features = false, features = [
5656
dialoguer = "0.12"
5757
liquid = { version = "0.26", features = ["stdlib"] }
5858
regex = "1.11"
59-
nanocld_client = { version = "0.16", features = ["tokio", "openssl"] }
60-
nanocl_error = { version = "0.5", features = [
59+
nanocld_client = { version = "0.17", features = ["tokio", "openssl"] }
60+
nanocl_error = { version = "0.6", features = [
6161
"io",
6262
"tokio",
6363
"http_client",
@@ -77,8 +77,8 @@ termimad = "0.34"
7777

7878
[target.'cfg(not(target_os = "windows"))'.dependencies]
7979
nix = { version = "0.30", features = ["user"] }
80-
nanocl_utils = { version = "0.7", features = ["unix"] }
80+
nanocl_utils = { version = "0.8", features = ["unix"] }
8181
termios = "0.3"
8282

8383
[target.'cfg(target_os = "windows")'.dependencies]
84-
nanocl_utils = { version = "0.7" }
84+
nanocl_utils = { version = "0.8" }

bin/nanocld/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nanocld"
3-
version = "0.16.3"
3+
version = "0.17.0"
44
edition = "2024"
55
authors = ["nanocl contributors <team@next-hat.com>"]
66
description = "The Self-Sufficient Hybrid-Cloud Orchestrator Daemon"
@@ -31,14 +31,14 @@ release = []
3131
[build-dependencies]
3232
clap = { version = "4.5", features = ["derive"] }
3333
clap_mangen = { version = "0.2" }
34-
nanocl_utils = { version = "0.7", features = ["build_tools"] }
35-
nanocl_stubs = { version = "0.16", features = ["clap"] }
34+
nanocl_utils = { version = "0.8", features = ["build_tools"] }
35+
nanocl_stubs = { version = "0.17", features = ["clap"] }
3636

3737
[dev-dependencies]
3838
serde_yaml = "0.9"
3939

4040
[dependencies]
41-
nanocl_error = { version = "0.5", features = [
41+
nanocl_error = { version = "0.6", features = [
4242
"io",
4343
"http",
4444
"http_client",
@@ -79,10 +79,10 @@ chrono = { version = "0.4", default-features = false, features = [
7979
"serde",
8080
] }
8181
jsonschema = { version = "0.33", default-features = false }
82-
nanocld_client = { version = "0.16", features = ["tokio"] }
82+
nanocld_client = { version = "0.17", features = ["tokio"] }
8383
metrsd_client = "0.5"
84-
nanocl_stubs = { version = "0.16", features = ["serde", "clap"] }
85-
nanocl_utils = { version = "0.7", features = ["unix", "ntex", "logger"] }
84+
nanocl_stubs = { version = "0.17", features = ["serde", "clap"] }
85+
nanocl_utils = { version = "0.8", features = ["unix", "ntex", "logger"] }
8686
utoipa = { version = "5", features = ["yaml"], optional = true }
8787
notify = "8.0"
8888
ntex-cors = "2"

bin/ncdns/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
22
[package]
33
name = "ncdns"
4-
version = "0.8.3"
4+
version = "0.9.0"
55
edition = "2024"
66

77
[[bin]]
@@ -24,13 +24,13 @@ vendored = ["openssl/vendored"]
2424
[build-dependencies]
2525
clap = { version = "4.5", features = ["derive"] }
2626
clap_mangen = { version = "0.2" }
27-
nanocl_utils = { version = "0.7", features = ["build_tools"] }
27+
nanocl_utils = { version = "0.8", features = ["build_tools"] }
2828

2929
[dev-dependencies]
3030
serde_yaml = "0.9"
3131

3232
[dependencies]
33-
nanocl_error = { version = "0.5", features = [
33+
nanocl_error = { version = "0.6", features = [
3434
"io",
3535
"http",
3636
"http_client",
@@ -43,8 +43,8 @@ tokio = { version = "1.44", features = ["fs"] }
4343
futures = "0.3"
4444
serde = { version = "1.0", features = ["derive"] }
4545
serde_json = "1.0"
46-
nanocld_client = { version = "0.16", features = ["tokio"] }
47-
nanocl_utils = { version = "0.7", features = ["ntex", "logger", "versioning"] }
46+
nanocld_client = { version = "0.17", features = ["tokio"] }
47+
nanocl_utils = { version = "0.8", features = ["ntex", "logger", "versioning"] }
4848
utoipa = { version = "5", features = ["yaml"], optional = true }
4949
openssl = "0.10"
5050
num_cpus = "1.16.0"

bin/ncproxy/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
22
[package]
33
name = "ncproxy"
4-
version = "0.13.3"
4+
version = "0.14.0"
55
edition = "2024"
66
authors = ["nanocl contributors <team@next-hat.com>"]
77
description = "Official nanocl controller daemon proxy"
@@ -30,14 +30,14 @@ vendored = ["openssl/vendored"]
3030
[build-dependencies]
3131
clap = { version = "4.5", features = ["derive"] }
3232
clap_mangen = { version = "0.2" }
33-
nanocl_utils = { version = "0.7", features = ["build_tools"] }
33+
nanocl_utils = { version = "0.8", features = ["build_tools"] }
3434

3535
[dev-dependencies]
3636
serde_yaml = "0.9"
3737
bollard-next = { version = "0.18.1" }
3838

3939
[dependencies]
40-
nanocl_error = { version = "0.5", features = [
40+
nanocl_error = { version = "0.6", features = [
4141
"io",
4242
"ntex",
4343
"http",
@@ -56,8 +56,8 @@ futures = "0.3"
5656
notify = { version = "8.0", default-features = false, features = [
5757
"macos_kqueue",
5858
] }
59-
nanocld_client = { version = "0.16", features = ["tokio"] }
60-
nanocl_utils = { version = "0.7", features = ["ntex", "logger", "versioning"] }
59+
nanocld_client = { version = "0.17", features = ["tokio"] }
60+
nanocl_utils = { version = "0.8", features = ["ntex", "logger", "versioning"] }
6161
utoipa = { version = "5", features = ["yaml"], optional = true }
6262
chrono = { version = "0.4", default-features = false, features = [
6363
"std",

bin/ncvpnkit/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ncvpnkit"
3-
version = "0.6.3"
3+
version = "0.7.0"
44
edition = "2024"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -11,10 +11,10 @@ test = []
1111
vendored = ["openssl/vendored"]
1212

1313
[build-dependencies]
14-
nanocl_utils = { version = "0.7", features = ["build_tools"] }
14+
nanocl_utils = { version = "0.8", features = ["build_tools"] }
1515

1616
[dependencies]
17-
nanocl_error = { version = "0.5", features = [
17+
nanocl_error = { version = "0.6", features = [
1818
"io",
1919
"http_client",
2020
"serde_json",
@@ -23,7 +23,7 @@ log = "0.4"
2323
futures-util = "0.3"
2424
ntex = { version = "2", features = ["tokio"] }
2525
vpnkitrc = { version = "0.1", features = ["tokio"] }
26-
nanocld_client = { version = "0.16" }
27-
nanocl_utils = { version = "0.7", features = ["logger"] }
26+
nanocld_client = { version = "0.17" }
27+
nanocl_utils = { version = "0.8", features = ["logger"] }
2828
serde_json = "1.0"
2929
openssl = "0.10"

crates/nanocl_error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nanocl_error"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2024"
55
authors = ["nanocl contributors <team@next-hat.com>"]
66
description = "Nanocl error types"

crates/nanocl_stubs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nanocl_stubs"
3-
version = "0.16.1"
3+
version = "0.17.0"
44
edition = "2024"
55
authors = ["nanocl contributors <team@next-hat.com>"]
66
description = "Nanocl shared data model"

crates/nanocl_stubs/src/generic.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ pub struct GenericListQuery {
137137
pub filter: Option<String>,
138138
}
139139

140+
#[cfg(feature = "serde")]
140141
impl TryFrom<GenericFilter> for GenericListQuery {
141142
type Error = serde_json::Error;
142143

@@ -147,6 +148,7 @@ impl TryFrom<GenericFilter> for GenericListQuery {
147148
}
148149
}
149150

151+
#[cfg(feature = "serde")]
150152
impl TryFrom<GenericListQuery> for GenericFilter {
151153
type Error = serde_json::Error;
152154

@@ -158,6 +160,7 @@ impl TryFrom<GenericListQuery> for GenericFilter {
158160
}
159161
}
160162

163+
#[cfg(feature = "serde")]
161164
impl TryFrom<GenericListQueryNsp> for GenericFilter {
162165
type Error = serde_json::Error;
163166

@@ -204,6 +207,7 @@ impl GenericListQueryNsp {
204207
}
205208
}
206209

210+
#[cfg(feature = "serde")]
207211
impl TryFrom<GenericFilterNsp> for GenericListQueryNsp {
208212
type Error = serde_json::Error;
209213

@@ -219,6 +223,7 @@ impl TryFrom<GenericFilterNsp> for GenericListQueryNsp {
219223
}
220224
}
221225

226+
#[cfg(feature = "serde")]
222227
impl TryFrom<GenericListQueryNsp> for GenericFilterNsp {
223228
type Error = serde_json::Error;
224229

@@ -234,6 +239,7 @@ impl TryFrom<GenericListQueryNsp> for GenericFilterNsp {
234239
}
235240
}
236241

242+
#[cfg(feature = "serde")]
237243
impl TryFrom<GenericFilter> for GenericListQueryNsp {
238244
type Error = serde_json::Error;
239245

crates/nanocl_stubs/src/job.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#[cfg(feature = "serde")]
12
use serde::{Deserialize, Serialize};
23

34
use bollard_next::container::Config;

0 commit comments

Comments
 (0)