Skip to content

Commit f7473bd

Browse files
authoredDec 13, 2021
Merge pull request #402 from jeremyandrews/r0.15.2
release 0.15.2
2 parents 618814d + 62d9b58 commit f7473bd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.15.2-dev
3+
## 0.15.2 December 13, 2021
44
- [#391](https://github.com/tag1consulting/goose/pull/391) properly sleep for configured `set_wait_time()` walking regularly to exit quickly if the load test ends
55
- [#394](https://github.com/tag1consulting/goose/pull/394) add additional graphs to the HTML report: errors per second, average response time, active users, active tasks
66
- [#403](https://github.com/tag1consulting/goose/pull/403) wake up a couple times a second to handle message and allow for a quick shutdown if the load test is canceled during startup

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "goose"
3-
version = "0.15.2-dev"
3+
version = "0.15.2"
44
authors = ["Jeremy Andrews <jeremy@tag1consulting.com>"]
55
edition = "2018"
66
description = "A load testing framework inspired by Locust."

‎src/docs/goose-book/src/controller/telnet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Trying 127.0.0.1...
1111
Connected to localhost.
1212
Escape character is '^]'.
1313
goose> ?
14-
goose 0.15.1 controller commands:
14+
goose 0.15.2 controller commands:
1515
help (?) this help
1616
exit (quit) exit controller
1717
start start an idle load test

‎src/docs/goose-book/src/getting-started/creating.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ At this point it's possible to compile all dependencies, though the resulting bi
2121
```bash
2222
$ cargo run
2323
Updating crates.io index
24-
Downloaded goose v0.15.1
24+
Downloaded goose v0.15.2
2525
...
26-
Compiling goose v0.15.1
26+
Compiling goose v0.15.2
2727
Compiling loadtest v0.1.0 (/home/jandrews/devel/rust/loadtest)
2828
Finished dev [unoptimized + debuginfo] target(s) in 52.97s
2929
Running `target/debug/loadtest`

‎src/docs/goose-book/src/getting-started/metrics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ All 1024 users hatched.
9999
Running: 2021-08-12 10:55:42 - 2021-08-12 11:05:09 (duration: 00:10:00)
100100
Stopping: 2021-08-12 11:05:09 - 2021-08-12 11:05:11 (duration: 00:00:02)
101101

102-
goose v0.15.1
102+
goose v0.15.2
103103
------------------------------------------------------------------------------
104104
```
105105

‎src/goose.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2039,7 +2039,7 @@ impl GooseUser {
20392039
/// [`reqwest::Client`](https://docs.rs/reqwest/*/reqwest/struct.Client.html):
20402040
/// - reports itself as the
20412041
/// [`user_agent`](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.user_agent)
2042-
/// requesting web pages (ie `goose/0.15.1`);
2042+
/// requesting web pages (ie `goose/0.15.2`);
20432043
/// - [stores cookies](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.cookie_store),
20442044
/// generally necessary if you aim to simulate logged in users;
20452045
/// - enables

0 commit comments

Comments
 (0)