Skip to content

Commit

Permalink
Merge pull request #272 from jeremyandrews/v0.11.1
Browse files Browse the repository at this point in the history
release v0.11.1
  • Loading branch information
jeremyandrews authored May 16, 2021
2 parents 4969e18 + 2a54f4a commit 6ee16c8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Changelog

## 0.11.1-dev
- update `rand` dependency to `0.8` branch, update [`gen_range`](https://docs.rs/rand/0.8.*/rand/trait.Rng.html#method.gen_range) method call
- update dependencies: `itertools` to `0.10`, `simplelog` to `0.10`, `url` to `2`
- update `nng` dependency for optional `gaggle` feature
- simplify `examples/umami` regex when parsing form
## 0.11.1 May 16, 2021
- update [`rand`](https://docs.rs/rand) dependency to `0.8` branch, update [`gen_range`](https://docs.rs/rand/0.8.*/rand/trait.Rng.html#method.gen_range) method call
- update dependencies: [`itertools`](https://docs.rs/itertools) to `0.10`, [`simplelog`](https://docs.rs/simplelog) to `0.10`, [`url`](https://docs.rs/url) to `2`
- update [`nng`](https://docs.rs/nng) dependency for optional `gaggle` feature
- simplify [`examples/umami`](https://github.com/tag1consulting/goose/tree/main/examples/umami) regex when parsing form
- allow configuration of algorithm for allocating `GooseTask`s the same as `GooseTaskSet`s; `GooseTaskSetScheduler` becomes more generically `GooseScheduler`
- specify (and detect) minimum `rustc` requirement of `1.49.0`, due to `flume` dependency which in turn depends on `spinning_top` which uses `hint::spin_loop` which stabilized in `rustc` version `1.49.0
- specify (and detect) minimum `rustc` requirement of `1.49.0`, due to [`flume`](https://docs.rs/flume) dependency which in turn depends on [`spinning_top`](https://docs.rs/spinning_top) which uses [`hint::spin_loop`](https://doc.rust-lang.org/std/hint/fn.spin_loop.html) which stabilized in `rustc` version `1.49.0
- standardize links in documentation; general documentation cleanups

## 0.11.0 April 9, 2021
- capture errors and count frequency for each, including summary in metrics report; optionally disable with `--no-error-summary`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "goose"
version = "0.11.1-dev"
version = "0.11.1"
authors = ["Jeremy Andrews <[email protected]>"]
edition = "2018"
description = "A load testing tool inspired by Locust."
description = "A load testing framework inspired by Locust."
homepage = "https://tag1.com/goose"
documentation = "https://docs.rs/goose/"
repository = "https://github.com/tag1consulting/goose"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ At this point it's possible to compile all dependencies, though the resulting bi
```
$ cargo run
Updating crates.io index
Downloaded goose v0.11.0
Downloaded goose v0.11.1
...
Compiling goose v0.11.0
Compiling goose v0.11.1
Compiling loadtest v0.1.0 (/home/jandrews/devel/rust/loadtest)
Finished dev [unoptimized + debuginfo] target(s) in 52.97s
Running `target/debug/loadtest`
Expand Down
2 changes: 1 addition & 1 deletion src/goose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@ impl GooseUser {
/// [`reqwest::Client`](https://docs.rs/reqwest/*/reqwest/struct.Client.html). The first
/// configures Goose to report itself as the
/// [`user_agent`](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.user_agent)
/// requesting web pages (ie `goose/0.11.0`). The second option configures
/// requesting web pages (ie `goose/0.11.1`). The second option configures
/// [`reqwest`](https://docs.rs/reqwest/) to
/// [store cookies](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.cookie_store),
/// which is generally necessary if you aim to simulate logged in users.
Expand Down

0 comments on commit 6ee16c8

Please sign in to comment.