Skip to content

Commit dfd5bc9

Browse files
authored
Merge pull request #545 from bottlerocket-os/testsys-0.0.2
testsys: Release v 0.0.2
2 parents 927a6f5 + e45548a commit dfd5bc9

File tree

15 files changed

+62
-59
lines changed

15 files changed

+62
-59
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [0.0.2] - 2022-08-31
10+
911
### Added
1012

1113
- This changelog
1214
- Uninstall functionality for the TestManager [#450]
15+
- This includes all changes since 0.0.1
1316

1417
[#450]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/450
1518

Cargo.lock

Lines changed: 13 additions & 13 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "agent-common"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

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

1212
[dev-dependencies]
1313
tempfile = "3"
1414

1515
[build-dependencies]
16-
yamlgen = { version = "0.0.1", path = "../../yamlgen" }
16+
yamlgen = { version = "0.0.2", path = "../../yamlgen" }

agent/resource-agent/Cargo.toml

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

88
[dependencies]
9-
agent-common = { version = "0.0.1", path = "../agent-common" }
9+
agent-common = { version = "0.0.2", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
model = { version = "0.0.1", path = "../../model" }
12+
model = { version = "0.0.2", path = "../../model" }
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
1515
snafu = "0.7"
@@ -21,4 +21,4 @@ nonzero_ext = "0.3"
2121
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread"] }
2222

2323
[build-dependencies]
24-
yamlgen = { version = "0.0.1", path = "../../yamlgen" }
24+
yamlgen = { version = "0.0.2", path = "../../yamlgen" }

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.1.0"
3+
version = "0.0.2"
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.1", path = "../agent-common" }
10+
agent-common = { version = "0.0.2", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.1", path = "../test-agent" }
12+
test-agent = { version = "0.0.2", 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.1", path = "../../model" }
16+
model = { version = "0.0.2", 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.0"
29-
selftest = { version = "0.0.1", path = "../../selftest" }
29+
selftest = { version = "0.0.2", path = "../../selftest" }

agent/test-agent/Cargo.toml

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

88
[dependencies]
9-
agent-common = { version = "0.0.1", path = "../agent-common" }
9+
agent-common = { version = "0.0.2", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
model = { version = "0.0.1", path = "../../model" }
12+
model = { version = "0.0.2", path = "../../model" }
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
1515
snafu = "0.7"
@@ -21,4 +21,4 @@ tokio = { version = "1", default-features = false, features = ["time"] }
2121
tokio = { version = "1", default-features = false, features = ["macros", "process", "rt-multi-thread"] }
2222

2323
[build-dependencies]
24-
yamlgen = { version = "0.0.1", path = "../../yamlgen" }
24+
yamlgen = { version = "0.0.2", path = "../../yamlgen" }

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.1"
3+
version = "0.0.2"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

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

bottlerocket/agents/Cargo.toml

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

88
[dependencies]
9-
agent-common = { version = "0.0.1", path = "../../agent/agent-common" }
10-
agent-utils = { version = "0.0.1", path = "../../agent/utils" }
11-
bottlerocket-types = { version = "0.0.1", path = "../types" }
9+
agent-common = { version = "0.0.2", path = "../../agent/agent-common" }
10+
agent-utils = { version = "0.0.2", path = "../../agent/utils" }
11+
bottlerocket-types = { version = "0.0.2", path = "../types" }
1212
async-trait = "0.1"
1313
aws-config = "0.47"
1414
aws-types = "0.47"
@@ -26,19 +26,19 @@ k8s-openapi = { version = "0.15", default-features = false, features = ["v1_20"]
2626
kube = { version = "0.74", default-features = false, features = ["config", "derive", "client"] }
2727
log = "0.4"
2828
maplit = "1.0.2"
29-
model = { version = "0.0.1", path = "../../model" }
29+
model = { version = "0.0.2", path = "../../model" }
3030
reqwest = { version = "0.11.1", default-features = false, features = ["rustls-tls", "blocking"] }
31-
resource-agent = { version = "0.0.1", path = "../../agent/resource-agent" }
31+
resource-agent = { version = "0.0.2", path = "../../agent/resource-agent" }
3232
serde = { version = "1", features = ["derive"] }
3333
serde_json = "1"
3434
serde_plain = "1"
3535
sha2 = "0.10"
3636
snafu = "0.7"
37-
test-agent = { version = "0.0.1", path = "../../agent/test-agent" }
37+
test-agent = { version = "0.0.2", path = "../../agent/test-agent" }
3838
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
3939
tough = { version = "0.12", features = ["http"] }
4040
url = "2.2"
4141
uuid = { version = "1.0", default-features = false, features = ["serde", "v4"] }
4242

4343
[build-dependencies]
44-
yamlgen = { version = "0.0.1", path = "../../yamlgen" }
44+
yamlgen = { version = "0.0.2", path = "../../yamlgen" }

bottlerocket/testsys/Cargo.toml

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

88
[dependencies]
99
base64 = "0.13.0"
10-
bottlerocket-types = { version = "0.0.1", path = "../types" }
10+
bottlerocket-types = { version = "0.0.2", path = "../types" }
1111
env_logger = "0.9"
1212
futures = "0.3.24"
1313
http = "0"
1414
k8s-openapi = { version = "0.15", features = ["v1_20", "api"], default-features = false }
1515
kube = { version = "0.74", default-features = true, features = ["config", "derive", "ws"] }
1616
log = "0.4"
1717
maplit = "1"
18-
model = { version = "0.0.1", path = "../../model" }
18+
model = { version = "0.0.2", path = "../../model" }
1919
serde = "1.0.144"
2020
serde_plain = "1"
2121
serde_json = "1.0.85"
@@ -30,10 +30,10 @@ topological-sort = "0.2"
3030

3131
[dev-dependencies]
3232
assert_cmd = "2.0"
33-
selftest = { version = "0.0.1", path = "../../selftest" }
33+
selftest = { version = "0.0.2", path = "../../selftest" }
3434

3535
[build-dependencies]
36-
yamlgen = { version = "0.0.1", path = "../../yamlgen" }
36+
yamlgen = { version = "0.0.2", path = "../../yamlgen" }
3737

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

bottlerocket/types/Cargo.toml

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

88
[dependencies]
9-
model = { version = "0.0.1", path = "../../model" }
9+
model = { version = "0.0.2", path = "../../model" }
1010
serde = "1"
1111
serde_plain = "1"

0 commit comments

Comments
 (0)