Skip to content

Commit

Permalink
hide internal macro in docs, add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mTsBucy1 committed Sep 9, 2022
1 parent 529cde1 commit 5424491
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.16.4-dev
- [#512](https://github.com/tag1consulting/goose/pull/512) include proper HTTP method and path in logs and html report when using `GooseRequest::builder()`
- [#514](https://github.com/tag1consulting/goose/pull/514) fix panic when an empty wait time interval is set
- [#514](https://github.com/tag1consulting/goose/pull/515) fix unescaped inner quotes in csv logs

## 0.16.3 July 17, 2022
- [#498](https://github.com/tag1consulting/goose/issues/498) ignore `GooseDefault::Host` if set to an empty string
Expand Down
1 change: 1 addition & 0 deletions src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ pub(crate) type GooseLoggerTx = Option<flume::Sender<Option<GooseLog>>>;
/// Inner quotes are doubled according to RFC 4180 2.7.
/// The fields are joined by commas `,`, but *not* terminated with a line ending.
#[macro_export]
#[doc(hidden)]
macro_rules! format_csv_row {
($( $field:expr ),+ $(,)?) => {{
[$( $field.to_string() ),*]
Expand Down

0 comments on commit 5424491

Please sign in to comment.