Skip to content

Commit

Permalink
Prepare for 0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bradfier committed Oct 14, 2021
1 parent e70f8bb commit 9a2566c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changes

## 0.9.0

* [Rust 2018 Refactor](https://github.com/tiny-http/tiny-http/pull/208)
* [Enable prompt responses, before the request has been fully read](https://github.com/tiny-http/tiny-http/pull/207)

This isn't an API change, but does result in different behaviour to 0.8.2 and so justifies a minor version bump.

HTTP requests now return a boxed `FusedReader` which drops the underlying
reader once it reaches EOF, such that the reader no longer needs to be
explicitly consumed and the server may now respond with e.g. a "413 Payload
too large" without waiting for the whole reader.

* Bumped the minimum compiler version tested by CI to 1.48 (the version supported in Debian Bullseye)

## 0.8.2

* [Add TestRequest for writing server tests more easily](https://github.com/tiny-http/tiny-http/pull/203)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tiny_http"
version = "0.8.2"
version = "0.9.0"
authors = ["pierre.krieger1708@gmail.com",
"Corey Farwell <coreyf@rwell.org>"]
description = "Low level HTTP server library"
Expand Down

0 comments on commit 9a2566c

Please sign in to comment.