-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
# Changelog | ||
|
||
## 0.1.5 - 2018-08-03 | ||
|
||
- Add wire tracing logs for inspecting raw headers being sent and received. | ||
- Fixed issue where messages from libcurl were being discarded before we could read them. This would cause the client to get stuck in an infinite loop whenever a request would reach a timeout. (#3) | ||
|
||
## 0.1.4 - 2018-02-24 | ||
|
||
- Moved the ring buffer out of the codebase into the `ringtail` crate. | ||
|
||
## 0.1.3 - 2018-02-01 | ||
|
||
- Fixed safety and soundness issues in the ring buffer. (#1, #2) | ||
|
||
## 0.1.2 - 2017-12-28 | ||
|
||
- Client options now support specifying a proxy URL. | ||
- Transport API is now private so the design can be revisited later. | ||
|
||
## 0.1.1 - 2017-12-21 | ||
|
||
- Switched to a custom ring buffer implementation for the response body to improve throughput. | ||
|
||
## 0.1.0 - 2017-10-28 | ||
|
||
- Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "chttp" | ||
version = "0.1.4" | ||
version = "0.1.5" | ||
description = "The practical HTTP client that is fun to use." | ||
authors = ["Stephen M. Coakley <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters