Skip to content

Commit 82e3a9a

Browse files
committed
release: 0.9.0
2 parents 6d72f4a + f9417ad commit 82e3a9a

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,22 @@
22

33

44

5+
## [0.9.0](https://github.com/Blobfolio/brunch/releases/tag/v0.9.0) - 2025-02-25
6+
7+
### Changed
8+
9+
* Bump `dactyl` to `0.10`
10+
* Bump MSRV to `1.85`
11+
* Bump Rust edition to `2024`
12+
* Miscellaneous code cleanup and lints
13+
14+
15+
516
## [0.8.1](https://github.com/Blobfolio/brunch/releases/tag/v0.8.1) - 2025-01-09
617

718
### Changed
819

9-
* Miscellaneous code changes and lints
20+
* Miscellaneous code cleanup and lints
1021

1122

1223

CREDITS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Project Dependencies
22
Package: brunch
3-
Version: 0.8.1
4-
Generated: 2025-01-09 17:40:08 UTC
3+
Version: 0.9.0
4+
Generated: 2025-02-25 21:32:21 UTC
55

66
| Package | Version | Author(s) | License |
77
| ---- | ---- | ---- | ---- |
8-
| [**dactyl**](https://github.com/Blobfolio/dactyl) | 0.9.0 | [Josh Stoik](mailto:[email protected]) | WTFPL |
8+
| [**dactyl**](https://github.com/Blobfolio/dactyl) | 0.10.0 | [Josh Stoik](mailto:[email protected]) | WTFPL |
99
| [**unicode-width**](https://github.com/unicode-rs/unicode-width) | 0.2.0 | [kwantam](mailto:[email protected]) and [Manish Goregaokar](mailto:[email protected]) | MIT OR Apache-2.0 |

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "brunch"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
authors = ["Josh Stoik <[email protected]>"]
5-
edition = "2021"
6-
rust-version = "1.83"
5+
edition = "2024"
6+
rust-version = "1.85"
77
description = "A simple micro-benchmark runner."
88
license = "WTFPL"
99
repository = "https://github.com/Blobfolio/brunch"
@@ -25,7 +25,7 @@ default-target = "x86_64-unknown-linux-gnu"
2525
name = "Brunch"
2626

2727
[dependencies]
28-
dactyl = "0.9.*"
28+
dactyl = "0.10.*"
2929
unicode-width = "0.2.*"
3030

3131
[dev-dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Add `brunch` to your `dev-dependencies` in `Cargo.toml`, like:
6666

6767
```yaml
6868
[dev-dependencies]
69-
brunch = "0.8.*"
69+
brunch = "0.9.*"
7070
```
7171

7272
Benchmarks should also be defined in `Cargo.toml`. Just be sure to set `harness = false` for each:

src/stats/history.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ fn serialize(history: &HistoryData) -> Vec<u8> {
232232
// Total, valid, deviation, and mean follow, in that order.
233233
out.extend_from_slice(s.total.get().to_be_bytes().as_slice());
234234
out.extend_from_slice(s.valid.get().to_be_bytes().as_slice());
235-
out.extend_from_slice(&s.deviation.to_be_bytes());
236-
out.extend_from_slice(&s.mean.to_be_bytes());
235+
out.extend_from_slice(s.deviation.to_be_bytes().as_slice());
236+
out.extend_from_slice(s.mean.to_be_bytes().as_slice());
237237
}
238238
}
239239

0 commit comments

Comments
 (0)