diff --git a/CHANGELOG.md b/CHANGELOG.md index 24104e7b..3fe286d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ # Changelog -## 0.10.8-dev +## 0.10.8 Feb 13, 2021 - introduce `--report-file` (and `GooseDefault::ReportFile`) to optionally generate an HTML report when the load test completes - upgrade to `tokio` 1.x, and switch to `flume` for all multi-producer, multi-consumer channels - make `examples/umami` more generic for easier load testing of any Drupal 9 version of the demo install profile ## 0.10.7 Nov 16, 2020 - account for time spent doing things other than sleeping, maintaining more consistency when displaying statistics and shutting down - - start each debug log file with a line feed in case the page is too big for the buffer; increase the debug logger buffer size from 8K to 8M. + - start each debug log file with a line feed in case the page is too big for the buffer; increase the debug logger buffer size from 8K to 8M - introduce `--no-debug-body` flag to optionally prevent debug log from including the response body - rename the metrics file to requests file to better reflect what it is o `--metrics-file` becomes `--requests-file` diff --git a/Cargo.toml b/Cargo.toml index 95eca721..880b2e8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "goose" -version = "0.10.8-dev" +version = "0.10.8" authors = ["Jeremy Andrews "] edition = "2018" description = "A load testing tool inspired by Locust." diff --git a/README.md b/README.md index 0435e8d7..d5d0b0ef 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,9 @@ At this point it's possible to compile all dependencies, though the resulting bi ``` $ cargo run Updating crates.io index - Downloaded goose v0.10.7 + Downloaded goose v0.10.8 ... - Compiling goose v0.10.7 + Compiling goose v0.10.8 Compiling loadtest v0.1.0 (/home/jandrews/devel/rust/loadtest) Finished dev [unoptimized + debuginfo] target(s) in 52.97s Running `target/debug/loadtest` diff --git a/src/goose.rs b/src/goose.rs index fbc257a7..b459a300 100644 --- a/src/goose.rs +++ b/src/goose.rs @@ -1782,7 +1782,7 @@ impl GooseUser { /// /// By default, Goose configures two options when building a Reqwest client. The first /// configures Goose to report itself as the user agent requesting web pages (ie - /// `goose/0.10.7`). The second option configures Reqwest to store cookies, which is + /// `goose/0.10.8`). The second option configures Reqwest to store cookies, which is /// generally necessary if you aim to simulate logged in users. /// /// # Default configuration: