Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.14.1 #369

Merged
merged 1 commit into from Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,8 @@
# Changelog

## 0.14.1-dev
## 0.14.1 October 13, 2021
- [#364](https://github.com/tag1consulting/goose/pull/364) add link from the [Developer Documentation](https://docs.rs/goose) to [The Git Book](https://book.goose.rs)
- [#368](https://github.com/tag1consulting/goose/pull/368) optimize fastpath if no delay between tasks
- [#368](https://github.com/tag1consulting/goose/pull/368) **fix performance regression**: optimize fastpath if no delay between tasks

## 0.14.0 September 15, 2021
- [#361](https://github.com/tag1consulting/goose/pull/361) convert `README.md` (and enhance) into [`The Goose Book`](https://book.goose.rs/)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "goose"
version = "0.14.1-dev"
version = "0.14.1"
authors = ["Jeremy Andrews <jeremy@tag1consulting.com>"]
edition = "2018"
description = "A load testing framework inspired by Locust."
Expand Down
2 changes: 1 addition & 1 deletion src/docs/goose-book/src/controller/telnet.md
Expand Up @@ -11,7 +11,7 @@ Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
goose> ?
goose 0.14.0 controller commands:
goose 0.14.1 controller commands:
help (?) this help
exit (quit) exit controller
start start an idle load test
Expand Down
4 changes: 2 additions & 2 deletions src/docs/goose-book/src/getting-started/creating.md
Expand Up @@ -20,9 +20,9 @@ At this point it's possible to compile all dependencies, though the resulting bi
```bash
$ cargo run
Updating crates.io index
Downloaded goose v0.14.0
Downloaded goose v0.14.1
...
Compiling goose v0.14.0
Compiling goose v0.14.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/docs/goose-book/src/getting-started/metrics.md
Expand Up @@ -99,7 +99,7 @@ All 1024 users hatched.
Running: 2021-08-12 10:55:42 - 2021-08-12 11:05:09 (duration: 00:10:00)
Stopping: 2021-08-12 11:05:09 - 2021-08-12 11:05:11 (duration: 00:00:02)

goose v0.14.0
goose v0.14.1
------------------------------------------------------------------------------
```

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -413,7 +413,7 @@
//! During: 2021-08-12 15:42:31 - 2021-08-12 15:43:02 (duration: 00:00:30)
//! Stopping: 2021-08-12 15:43:02 - 2021-08-12 15:43:02 (duration: 00:00:00)
//!
//! goose v0.14.0
//! goose v0.14.1
//! ------------------------------------------------------------------------------
//! ```
//!
Expand Down