Skip to content

Commit

Permalink
Prepare for v0.10.0 release
Browse files Browse the repository at this point in the history
Since we're already on `edition = 2018` in the manifest we can drop the
paragraph in the README about extern crates.
  • Loading branch information
bradfier committed Jan 12, 2022
1 parent 75ac775 commit fd2cced
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# Changes

## 0.10.0

* [Replace chrono with time-rs](https://github.com/tiny-http/tiny-http/commit/75ac7758fd0ca660c35f58c2a36edb23a42cda32)

`chrono` was only used to store and format `DateTime` into the slightly odd format required by RFC 7231, so to
avoid the numerous RUSTSEC advisories generated by the `localtime_r` issue, we can just drop it entirely and switch
to `time-rs`.
Unfortunately this means we need to **bump our minimum tested compiler version to 1.51**, and as such this change
requires a full minor release.

## 0.9.0

* [Rust 2018 Refactor](https://github.com/tiny-http/tiny-http/pull/208)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tiny_http"
version = "0.9.0"
version = "0.10.0"
authors = ["pierre.krieger1708@gmail.com",
"Corey Farwell <coreyf@rwell.org>"]
description = "Low level HTTP server library"
Expand Down
8 changes: 1 addition & 7 deletions README.md
Expand Up @@ -31,13 +31,7 @@ Add this to the `Cargo.toml` file of your project:

```toml
[dependencies]
tiny_http = "0.8"
```

Don't forget to add the external crate:

```rust
extern crate tiny_http;
tiny_http = "0.10"
```

### Usage
Expand Down

0 comments on commit fd2cced

Please sign in to comment.