Skip to content

Commit 92a89bd

Browse files
Bump version and protocol version.
1 parent cf765e8 commit 92a89bd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "antithesis_sdk"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
rust-version = "1.62.1"
66
license = "MIT"

lib/src/internal/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct AntithesisSDKInfo {
4343

4444
// Hardly ever changes, refers to the underlying JSON representation
4545
#[allow(dead_code)]
46-
const PROTOCOL_VERSION: &str = "1.0.0";
46+
const PROTOCOL_VERSION: &str = "1.1.0";
4747

4848
// Tracks SDK releases
4949
#[allow(dead_code)]

lib/tests/sdk_info.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn sdk_info() {
3838
Ok(x) => {
3939
for obj in x.iter() {
4040
if let SDKInput::AntithesisSdk(sdk) = obj {
41-
assert_eq!(sdk.protocol_version, "1.0.0");
41+
assert_eq!(sdk.protocol_version, "1.1.0");
4242
assert_eq!(sdk.language.name, "Rust")
4343
}
4444
}

0 commit comments

Comments
 (0)