Skip to content

Commit 3003ca1

Browse files
authored
Merge pull request #10 from antithesishq/fix-sdk-version
Fix sdk version
2 parents 8ac233a + 5c82f3c commit 3003ca1

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
target/
2+
.envrc
3+
.direnv/

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ For general usage guidance see the [Antithesis Rust SDK Documentation](http://an
99

1010
### Notes
1111

12-
Please use llvm's link/loader from clang version 14 or greater.
12+
GNU Binutils `ld` works reliably when building/running rust applications that use the Antithesis SDK.
13+
1314

1415
To disable assertions use this feature flag for cargo builds:
1516

lib/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "antithesis_sdk"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
rust-version = "1.62.1"
66
license = "MIT"

lib/src/internal/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ struct AntithesisSDKInfo {
3232
const PROTOCOL_VERSION: &str = "1.0.0";
3333

3434
// Tracks SDK releases
35-
const SDK_VERSION: &str = "0.1.2";
35+
const SDK_VERSION: &str = env!("CARGO_PKG_VERSION");
3636

3737
pub const LOCAL_OUTPUT: &str = "ANTITHESIS_SDK_LOCAL_OUTPUT";
3838

0 commit comments

Comments
 (0)