Skip to content

Commit 196f26d

Browse files
committed
bump to 0.7.0
1 parent 3203343 commit 196f26d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["mappings", "capi", "util", "example"]
44
[package]
55
name = "jemalloc_pprof"
66
description = "Convert jemalloc heap profiles to pprof to understand memory usage, fix memory leaks, and fix OOM Kills."
7-
version = "0.6.0"
7+
version = "0.7.0"
88
edition = "2021"
99
publish = true
1010
license = "Apache-2.0"
@@ -39,8 +39,8 @@ tokio = { version = "1", features = ["time", "sync"] }
3939
paste = "1.0"
4040
num = "0.4"
4141
errno = "0.3"
42-
util = { path = "./util", version = "0.6", package = "pprof_util" }
43-
mappings = { path = "./mappings", version = "0.6" }
42+
util = { path = "./util", version = "0.7", package = "pprof_util" }
43+
mappings = { path = "./mappings", version = "0.7" }
4444
backtrace = "0.3"
4545
inferno = "0.12"
4646

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ To generate symbolized profiles, enable the `symbolize` crate feature:
9999

100100
```toml
101101
[dependencies]
102-
jemalloc_pprof = { version = "0.6", features = ["symbolize"] }
102+
jemalloc_pprof = { version = "0.7", features = ["symbolize"] }
103103
```
104104

105105
### Flamegraph SVGs
@@ -108,7 +108,7 @@ The `flamegraph` crate feature can also be enabled to generate interactive flame
108108
(implies the `symbolize` feature):
109109

110110
```toml
111-
jemalloc_pprof = { version = "0.6", features = ["flamegraph"] }
111+
jemalloc_pprof = { version = "0.7", features = ["flamegraph"] }
112112
```
113113

114114
We can then adjust the example above to also emit a flamegraph SVG:

capi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capi"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55

66
[lib]

mappings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mappings"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
description = "Get the mappings of a process (currently only on Linux)"
66
publish = true

util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pprof_util"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
description = "various utilities for representing and manipulating profiling data"
66
publish = true

0 commit comments

Comments
 (0)