Skip to content

Commit c207bd5

Browse files
Merge pull request #460 from jeremyandrews/r0.16.0
tag 0.16.0 release
2 parents 91efee0 + 99967c2 commit c207bd5

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

CHANGELOG.md

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

3-
## 0.16.0-dev
3+
## 0.16.0 May 1, 2022
44
- [#431](https://github.com/tag1consulting/goose/pull/431) rename `--no-granular-data` to `--no-granular-report`
55
- [#415](https://github.com/tag1consulting/goose/pull/415) display granular data in HTML graphs, introduce `--no-granular-data` to disable it and display graphs as they were until this change
66
- [#406](https://github.com/tag1consulting/goose/pull/406) make sure that the graphs are built correctly if the load test is interrupted during the starting phase

Cargo.toml

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

examples/drupal_memcache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! ## License
1010
//!
11-
//! Copyright 2020 Jeremy Andrews
11+
//! Copyright 2020-2022 Jeremy Andrews
1212
//!
1313
//! Licensed under the Apache License, Version 2.0 (the "License");
1414
//! you may not use this file except in compliance with the License.

examples/session.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//!
44
//! ## License
55
//!
6-
//! Copyright 2020 Jeremy Andrews
6+
//! Copyright 2020-2022 Jeremy Andrews
77
//!
88
//! Licensed under the Apache License, Version 2.0 (the "License");
99
//! you may not use this file except in compliance with the License.

examples/simple.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//!
44
//! ## License
55
//!
6-
//! Copyright 2020 Jeremy Andrews
6+
//! Copyright 2020-2022 Jeremy Andrews
77
//!
88
//! Licensed under the Apache License, Version 2.0 (the "License");
99
//! you may not use this file except in compliance with the License.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use goose::prelude::*;
3838

3939
> **Note:** Using the above prelude automatically adds the following `use` statements necessary when writing a load test, so you don't need to manually add all of them:
4040
>
41-
> ```rust
41+
> ```rust,ignore
4242
> use crate::config::{GooseDefault, GooseDefaultType};
4343
> use crate::goose::{
4444
> GooseMethod, GooseRequest, GooseUser, Scenario, Transaction, TransactionError,

src/docs/goose-book/src/getting-started/tips.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
By default, Goose will time out requests that take longer than 60 seconds to return, and display a `WARN` level message saying, "operation timed out". For example:
1313

14-
```
14+
```ignore
1515
11:52:17 [WARN] "/node/3672": error sending request for url (http://apache/node/3672): operation timed out
1616
```
1717

1818
These will also show up in the error summary displayed with the final metrics. For example:
1919

20-
```
20+
```ignore
2121
=== ERRORS ===
2222
------------------------------------------------------------------------------
2323
Count | Error

src/goose.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
//!
274274
//! ## License
275275
//!
276-
//! Copyright 2020 Jeremy Andrews
276+
//! Copyright 2020-2022 Jeremy Andrews
277277
//!
278278
//! Licensed under the Apache License, Version 2.0 (the "License");
279279
//! you may not use this file except in compliance with the License.

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
//!
2424
//! ## License
2525
//!
26-
//! Copyright 2020-21 Jeremy Andrews
26+
//! Copyright 2020-2022 Jeremy Andrews
2727
//!
2828
//! Licensed under the Apache License, Version 2.0 (the "License");
2929
//! you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)