Skip to content

Commit

Permalink
Merge pull request #10 from antithesishq/fix-sdk-version
Browse files Browse the repository at this point in the history
Fix sdk version
  • Loading branch information
herzogp authored May 13, 2024
2 parents 8ac233a + 5c82f3c commit 3003ca1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
target/
.envrc
.direnv/
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ For general usage guidance see the [Antithesis Rust SDK Documentation](http://an

### Notes

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


To disable assertions use this feature flag for cargo builds:

Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "antithesis_sdk"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
rust-version = "1.62.1"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion lib/src/internal/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct AntithesisSDKInfo {
const PROTOCOL_VERSION: &str = "1.0.0";

// Tracks SDK releases
const SDK_VERSION: &str = "0.1.2";
const SDK_VERSION: &str = env!("CARGO_PKG_VERSION");

pub const LOCAL_OUTPUT: &str = "ANTITHESIS_SDK_LOCAL_OUTPUT";

Expand Down

0 comments on commit 3003ca1

Please sign in to comment.