Skip to content

Commit

Permalink
Merge pull request #37 from hermit-os/release-0.3.0
Browse files Browse the repository at this point in the history
chore: release version 0.3.0
  • Loading branch information
mkroening authored Mar 27, 2024
2 parents 29cafdd + 8833b44 commit ff17a1a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ There are 4 usage examples in `/examples`: Rust and C, both on normal Linux x64
To use rftrace, add both the backend and a frontend to your dependencies.
```toml
[dependencies]
rftrace = "0.1"
rftrace-frontend = "0.1"
rftrace = "0.2"
rftrace-frontend = "0.2"
```

Ensure that frame pointers are generated! Debug build always seem to have them enabled.
Expand Down Expand Up @@ -120,7 +120,7 @@ An example with makefile, which does all the needed trace gathering, timing conv
```toml
[dependencies]
hermit = { version = "0.8", default-features = false, features = ["instrument"] }
rftrace = "0.1"
rftrace = "0.2"
```

#### Any other kernel
Expand Down
3 changes: 1 addition & 2 deletions examples/hermitrust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "rftrace-hermit-rs-test"
version = "0.1.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand All @@ -10,7 +9,7 @@ edition = "2018"

[dependencies]
rftrace = { version = "0.2.0", path="../../rftrace" }
rftrace-frontend = { version = "0.1.0", path="../../rftrace-frontend" }
rftrace-frontend = { version = "0.2.0", path="../../rftrace-frontend" }

[target.'cfg(target_os = "hermit")'.dependencies]
hermit = { version = "0.8" }
3 changes: 1 addition & 2 deletions examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "rftrace-rs-test"
version = "0.1.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand All @@ -10,4 +9,4 @@ edition = "2018"

[dependencies]
rftrace = { version = "0.2.0", path="../../rftrace" }
rftrace-frontend = { version = "0.1.0", path="../../rftrace-frontend" }
rftrace-frontend = { version = "0.2.0", path="../../rftrace-frontend" }
4 changes: 2 additions & 2 deletions rftrace-frontend-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rftrace-frontend-ffi"
version = "0.1.0"
version = "0.2.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand All @@ -18,4 +18,4 @@ repository = "https://github.com/hermit-os/rftrace"
crate-type = ["staticlib"]

[dependencies]
rftrace-frontend = {path="../rftrace-frontend", version="0.1"}
rftrace-frontend = {path="../rftrace-frontend", version="0.2"}
4 changes: 2 additions & 2 deletions rftrace-frontend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rftrace-frontend"
version = "0.1.0"
version = "0.2.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand All @@ -18,5 +18,5 @@ repository = "https://github.com/hermit-os/rftrace"
crate-type = ['rlib']

[dependencies]
byteorder = "~1.3.2"
byteorder = "1"
cfg-if = "1"

0 comments on commit ff17a1a

Please sign in to comment.