Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ jobs:
- name: Publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish -p measureme
run: |
# Note: Order is important. Leaf packages need to be published first
cargo publish -p measureme
cargo publish -p decodeme
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [10.1.3] - 2024-05-30

### Changed

- `decodeme`: Include software license information in Cargo.toml and `.crate` tarball ([GH-231])
- `measureme`: Include software license information in Cargo.toml and `.crate` tarball ([GH-231])

## [10.1.2] - 2023-12-14

### Changed
Expand Down Expand Up @@ -161,6 +168,7 @@

## [0.2.0] - 2019-04-10

[10.1.3]: https://github.com/rust-lang/measureme/releases/tag/10.1.3
[10.1.2]: https://github.com/rust-lang/measureme/releases/tag/10.1.2
[10.1.1]: https://github.com/rust-lang/measureme/releases/tag/10.1.1
[10.1.0]: https://github.com/rust-lang/measureme/releases/tag/10.1.0
Expand Down Expand Up @@ -232,3 +240,4 @@
[GH-208]: https://github.com/rust-lang/measureme/pull/208
[GH-209]: https://github.com/rust-lang/measureme/pull/209
[GH-211]: https://github.com/rust-lang/measureme/pull/211
[GH-231]: https://github.com/rust-lang/measureme/pull/231
2 changes: 1 addition & 1 deletion analyzeme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "analyzeme"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crox"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>"]
edition = "2018"

Expand Down
8 changes: 6 additions & 2 deletions decodeme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[package]
name = "decodeme"
version = "10.1.2"
description = "Decoding definitions of the profiling event data from `measureme`"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/measureme"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
measureme = { path = "../measureme" }
measureme = { version = "10.1.3", path = "../measureme" }
memchr = "2"
rustc-hash = "1.0.1"
serde = { version = "1.0", features = ["derive"] }
Expand Down
1 change: 1 addition & 0 deletions decodeme/LICENSE-APACHE
1 change: 1 addition & 0 deletions decodeme/LICENSE-MIT
2 changes: 1 addition & 1 deletion flamegraph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flamegraph"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion measureme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "measureme"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
description = "Support crate for rustc's self-profiling feature"
Expand Down
1 change: 1 addition & 0 deletions measureme/LICENSE-APACHE
1 change: 1 addition & 0 deletions measureme/LICENSE-MIT
2 changes: 1 addition & 1 deletion mmedit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mmedit"
version = "10.1.2"
version = "10.1.3"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion mmview/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mmview"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion stack_collapse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stack_collapse"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion summarize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summarize"
version = "10.1.2"
version = "10.1.3"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion version_checker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "version_checker"
version = "10.1.2"
version = "10.1.3"
authors = ["Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down