Skip to content

Commit 1007041

Browse files
committed
Version v0.5.0
Breaking changes since v0.4.1: - ParseError has been split to SerializeParseError and DeserializeParseError which allows to return request body to user on error. Other changes: - Project has been formatted using latest rustfmt. - Request timeout handling has been refactored to use empty future for 'no timeout'. - New configuration options added to Builder.
1 parent f8db4bb commit 1007041

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "restson"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Sami Pietikäinen"]
55
description = "Easy-to-use REST client with automatic serialization and deserialization."
66
repository = "https://github.com/spietika/restson-rust"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add the following lines to your project `Cargo.toml` file:
1111

1212
```toml
1313
[dependencies]
14-
restson = "^0.4.1"
14+
restson = "^0.5.0"
1515
serde = "^1.0"
1616
serde_derive = "^1.0"
1717
```

0 commit comments

Comments
 (0)