Skip to content

Commit

Permalink
update CHANGELOG.md, README.md and RELEASE-CHECKLIST.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
ducaale committed Aug 5, 2021
1 parent 0484bf5 commit ccd7ca0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Add support for HTTPie's [Sessions](https://httpie.io/docs#sessions), see #125 (@ducaale)
- Send and display headers names as title case for non-HTTP/2 requests and responses, see #167 (@blyxxyz)
- Support using the system's TLS library via _--native-tls_ flag, see #154 (@blyxxyz)
- Support reading args from a config file, see #165 (@ducaale)

## [0.11.0] - 2021-07-26
### Features
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ OPTIONS:
--verify <VERIFY> If "no", skip SSL verification. If a file path, use it as a CA bundle
--cert <FILE> Use a client side certificate for SSL
--cert-key <FILE> A private key file to use with --cert
--native-tls Use the system TLS library instead of rustls (if enabled at compile time)
--https Make HTTPS requests if not specified in the URL
-I, --ignore-stdin Do not attempt to read stdin
--curl Print a translation to a `curl` command
Expand Down
2 changes: 1 addition & 1 deletion RELEASE-CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- Make sure that all options/flags have corresponding negation in the `NEGATION_FLAGS` list found
in `cli.rs`. The following command should help in getting an up-to-date list.
```
cargo expand cli | rg -o 'with_name\s*\("([^"]*)"\)' -r ' "--no-$1",' | rg -v 'raw-' | sort
cargo expand --all-features cli | rg -o 'with_name\s*\("([^"]*)"\)' -r ' "--no-$1",' | rg -v 'raw-' | sort
```
- Update `CHANGELOG.md` (rename unreleased header to the current date, add any missing changes).
- Bump up the version in `Cargo.toml` and run `cargo check` to update `Cargo.lock`.
Expand Down

0 comments on commit ccd7ca0

Please sign in to comment.