Skip to content

Commit 904eb6d

Browse files
authored
Merge pull request #710 from ecpullen/update-version
testsys: Update mod versions to 0.0.4
2 parents 1ace322 + 3ee5bb3 commit 904eb6d

File tree

15 files changed

+58
-58
lines changed

15 files changed

+58
-58
lines changed

Cargo.lock

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

agent/agent-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "agent-common"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
model = { version = "0.0.3", path = "../../model" }
9+
model = { version = "0.0.4", path = "../../model" }
1010
snafu = "0.7"
1111

1212
[dev-dependencies]

agent/builder-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "builder-derive"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
@@ -17,5 +17,5 @@ proc-macro = true
1717
[dev-dependencies]
1818
serde = "1"
1919
serde_json= "1"
20-
model = { version = "0.0.3", path = "../../model" }
21-
configuration-derive = { version = "0.0.3", path = "../configuration-derive" }
20+
model = { version = "0.0.4", path = "../../model" }
21+
configuration-derive = { version = "0.0.4", path = "../configuration-derive" }

agent/configuration-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "configuration-derive"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"

agent/resource-agent/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "resource-agent"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.3", path = "../agent-common" }
9+
agent-common = { version = "0.0.4", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
model = { version = "0.0.3", path = "../../model" }
12+
model = { version = "0.0.4", path = "../../model" }
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
1515
snafu = "0.7"

agent/test-agent-cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "test-agent-cli"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
99
argh = "0.1"
10-
agent-common = { version = "0.0.3", path = "../agent-common" }
10+
agent-common = { version = "0.0.4", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.3", path = "../test-agent" }
12+
test-agent = { version = "0.0.4", path = "../test-agent" }
1313
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
1414
tokio-util = "0.7"
1515
log = "0.4"
16-
model = { version = "0.0.3", path = "../../model" }
16+
model = { version = "0.0.4", path = "../../model" }
1717
snafu = "0.7"
1818
async-trait = "0.1"
1919
tempfile = "3"
@@ -26,4 +26,4 @@ tar = "0.4"
2626

2727
[dev-dependencies]
2828
assert_cmd = "2"
29-
selftest = { version = "0.0.3", path = "../../selftest" }
29+
selftest = { version = "0.0.4", path = "../../selftest" }

agent/test-agent/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "test-agent"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.3", path = "../agent-common" }
9+
agent-common = { version = "0.0.4", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
model = { version = "0.0.3", path = "../../model" }
12+
model = { version = "0.0.4", path = "../../model" }
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
1515
snafu = "0.7"

agent/utils/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[package]
22
name = "agent-utils"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.3", path = "../../agent/agent-common" }
9+
agent-common = { version = "0.0.4", path = "../../agent/agent-common" }
1010
aws-config = "0.49"
1111
aws-types = "0.49"
1212
aws-sdk-sts = "0.19"
1313
aws-smithy-types = "0.49"
1414
base64 = "0.20"
1515
env_logger = "0.10"
1616
log = "0.4"
17-
model = { version = "0.0.3", path = "../../model" }
18-
resource-agent = { version = "0.0.3", path = "../../agent/resource-agent" }
17+
model = { version = "0.0.4", path = "../../model" }
18+
resource-agent = { version = "0.0.4", path = "../../agent/resource-agent" }
1919
serde = { version = "1", features = ["derive"] }
2020
serde_json = "1"
2121
snafu = "0.7"
22-
test-agent = { version = "0.0.3", path = "../../agent/test-agent" }
22+
test-agent = { version = "0.0.4", path = "../../agent/test-agent" }

bottlerocket/agents/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "bottlerocket-agents"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.3", path = "../../agent/agent-common" }
10-
agent-utils = { version = "0.0.3", path = "../../agent/utils" }
11-
bottlerocket-types = { version = "0.0.3", path = "../types" }
9+
agent-common = { version = "0.0.4", path = "../../agent/agent-common" }
10+
agent-utils = { version = "0.0.4", path = "../../agent/utils" }
11+
bottlerocket-types = { version = "0.0.4", path = "../types" }
1212
async-trait = "0.1"
1313
aws-config = "0.49"
1414
aws-types = "0.49"
@@ -26,16 +26,16 @@ k8s-openapi = { version = "0.16", default-features = false, features = ["v1_20"]
2626
kube = { version = "0.75", default-features = false, features = ["config", "derive", "client"] }
2727
log = "0.4"
2828
maplit = "1"
29-
model = { version = "0.0.3", path = "../../model" }
29+
model = { version = "0.0.4", path = "../../model" }
3030
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
31-
resource-agent = { version = "0.0.3", path = "../../agent/resource-agent" }
31+
resource-agent = { version = "0.0.4", path = "../../agent/resource-agent" }
3232
serde = { version = "1", features = ["derive"] }
3333
serde_json = "1"
3434
serde_plain = "1"
3535
serde_yaml = "0.8"
3636
sha2 = "0.10"
3737
snafu = "0.7"
38-
test-agent = { version = "0.0.3", path = "../../agent/test-agent" }
38+
test-agent = { version = "0.0.4", path = "../../agent/test-agent" }
3939
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
4040
toml = "0.5"
4141
tough = { version = "0.12", features = ["http"] }

bottlerocket/testsys/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[package]
22
name = "testsys"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
99
base64 = "0.20.0"
10-
bottlerocket-types = { version = "0.0.3", path = "../types" }
10+
bottlerocket-types = { version = "0.0.4", path = "../types" }
1111
env_logger = "0.10"
1212
futures = "0.3"
1313
http = "0"
1414
k8s-openapi = { version = "0.16", features = ["v1_20", "api"], default-features = false }
1515
kube = { version = "0.75", default-features = true, features = ["config", "derive", "ws"] }
1616
log = "0.4"
1717
maplit = "1"
18-
model = { version = "0.0.3", path = "../../model" }
18+
model = { version = "0.0.4", path = "../../model" }
1919
serde = "1"
2020
serde_plain = "1"
2121
serde_json = "1"
@@ -30,7 +30,7 @@ topological-sort = "0.2"
3030

3131
[dev-dependencies]
3232
assert_cmd = "2"
33-
selftest = { version = "0.0.3", path = "../../selftest" }
33+
selftest = { version = "0.0.4", path = "../../selftest" }
3434

3535
[features]
3636
# The `integ` feature enables integration tests. These tests require docker and kind.

0 commit comments

Comments
 (0)