diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a7d198c..cc14148 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index e55b9a6..053a32c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 @@ -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 diff --git a/analyzeme/Cargo.toml b/analyzeme/Cargo.toml index 463d732..d752ac2 100644 --- a/analyzeme/Cargo.toml +++ b/analyzeme/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "analyzeme" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crox/Cargo.toml b/crox/Cargo.toml index a42b820..18deb57 100644 --- a/crox/Cargo.toml +++ b/crox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crox" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser "] edition = "2018" diff --git a/decodeme/Cargo.toml b/decodeme/Cargo.toml index bf6a94d..33714bc 100644 --- a/decodeme/Cargo.toml +++ b/decodeme/Cargo.toml @@ -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 ", "Michael Woerister "] 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"] } diff --git a/decodeme/LICENSE-APACHE b/decodeme/LICENSE-APACHE new file mode 120000 index 0000000..965b606 --- /dev/null +++ b/decodeme/LICENSE-APACHE @@ -0,0 +1 @@ +../LICENSE-APACHE \ No newline at end of file diff --git a/decodeme/LICENSE-MIT b/decodeme/LICENSE-MIT new file mode 120000 index 0000000..76219eb --- /dev/null +++ b/decodeme/LICENSE-MIT @@ -0,0 +1 @@ +../LICENSE-MIT \ No newline at end of file diff --git a/flamegraph/Cargo.toml b/flamegraph/Cargo.toml index b5d0c15..e7ba758 100644 --- a/flamegraph/Cargo.toml +++ b/flamegraph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flamegraph" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/measureme/Cargo.toml b/measureme/Cargo.toml index 6a370e7..c9b6a32 100644 --- a/measureme/Cargo.toml +++ b/measureme/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "measureme" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" description = "Support crate for rustc's self-profiling feature" diff --git a/measureme/LICENSE-APACHE b/measureme/LICENSE-APACHE new file mode 120000 index 0000000..965b606 --- /dev/null +++ b/measureme/LICENSE-APACHE @@ -0,0 +1 @@ +../LICENSE-APACHE \ No newline at end of file diff --git a/measureme/LICENSE-MIT b/measureme/LICENSE-MIT new file mode 120000 index 0000000..76219eb --- /dev/null +++ b/measureme/LICENSE-MIT @@ -0,0 +1 @@ +../LICENSE-MIT \ No newline at end of file diff --git a/mmedit/Cargo.toml b/mmedit/Cargo.toml index ee3f794..4cce99f 100644 --- a/mmedit/Cargo.toml +++ b/mmedit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmedit" -version = "10.1.2" +version = "10.1.3" edition = "2018" [dependencies] diff --git a/mmview/Cargo.toml b/mmview/Cargo.toml index c11dfff..02b3190 100644 --- a/mmview/Cargo.toml +++ b/mmview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmview" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/stack_collapse/Cargo.toml b/stack_collapse/Cargo.toml index 539d9d9..0ba21c8 100644 --- a/stack_collapse/Cargo.toml +++ b/stack_collapse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stack_collapse" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/summarize/Cargo.toml b/summarize/Cargo.toml index ebe5d4c..1b2c8b4 100644 --- a/summarize/Cargo.toml +++ b/summarize/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summarize" -version = "10.1.2" +version = "10.1.3" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/version_checker/Cargo.toml b/version_checker/Cargo.toml index c9667c6..832b37f 100644 --- a/version_checker/Cargo.toml +++ b/version_checker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version_checker" -version = "10.1.2" +version = "10.1.3" authors = ["Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0"