Bump to 2.0.1.

Brings in a fix to 308 redirects.
This commit is contained in:
Jacob Hoffman-Andrews
2021-01-03 17:52:38 -08:00
parent 6126a2fe50
commit 96985956aa
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
# 2.0.1
* Fix handling of 308 redirects (port from 1.5.4 branch).
# 2.0.0 # 2.0.0
* Methods that formerly returned Response now return Result<Response, Error>. * Methods that formerly returned Response now return Result<Response, Error>.
You'll need to change all instances of `.call()` to `.call()?` or handle You'll need to change all instances of `.call()` to `.call()?` or handle

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "ureq" name = "ureq"
version = "2.0.0" version = "2.0.1"
authors = ["Martin Algesten <martin@algesten.se>", "Jacob Hoffman-Andrews <ureq@hoffman-andrews.com>"] authors = ["Martin Algesten <martin@algesten.se>", "Jacob Hoffman-Andrews <ureq@hoffman-andrews.com>"]
description = "Simple, safe HTTP client" description = "Simple, safe HTTP client"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"