Skip to content

Commit

Permalink
chore(release): 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fMeow committed May 29, 2021
1 parent ab8aff0 commit 13011c3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.2.1](https://github.com/fMeow/uclient/compare/v0.2.0...v0.2.1) (2021-05-29)


### Features

* add method to turn into header ([04ba0bc](https://github.com/fMeow/uclient/commit/04ba0bca6201aac31a5abf2837144770b54ba1da))
* count bytes count of multipart `Read` object ([787a5f9](https://github.com/fMeow/uclient/commit/787a5f91b67039908bf06026a959e5a9c50c633d))
* guess mime for file ([1f4583e](https://github.com/fMeow/uclient/commit/1f4583e948511412afe11ba4e7759a722c909cd4))
* use crate::Error for `multipart_to_read()` ([e695847](https://github.com/fMeow/uclient/commit/e6958472c8a29ebbf05894888ecac6b61fd31433))


### Bug Fixes

* test ([5714e44](https://github.com/fMeow/uclient/commit/5714e4468e75a4f8176cc0289469225c072195eb))

## [0.2.0](https://github.com/fMeow/uclient/compare/v0.1.4...v0.2.0) (2021-05-28)


Expand Down
18 changes: 10 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uclient"
version = "0.2.0"
version = "0.2.1"
authors = [ "Guoli Lyu <guoli-lv@hotmail.com>" ]
edition = "2018"
readme = "README.md"
Expand All @@ -17,18 +17,20 @@ features = [ "multipart", "async_reqwest", "async_surf" ]

[features]
default = [ "multipart" ]
multipart = [ "mime", "concat-reader", "mime_multipart", "hyper", "mime_guess" ]
multipart = [
"mime",
"concat-reader",
"mime_multipart",
"hyper",
"mime_guess"
]
blocking = [ "maybe-async/is_sync" ]
async_reqwest = [ "reqwest/default-tls", "futures", "bytes" ]
async_reqwest_rustls = [ "reqwest/rustls-tls", "futures", "bytes" ]
blocking_reqwest = [ "reqwest/blocking", "reqwest/default-tls", "blocking" ]
blocking_reqwest_rustls = [ "reqwest/blocking", "reqwest/rustls-tls", "blocking" ]
async_surf = [ "surf/default", "futures" ]
async_surf_rustls = [
"surf/h1-client-rustls",
"surf/encoding",
"futures"
]
async_surf_rustls = [ "surf/h1-client-rustls", "surf/encoding", "futures" ]

[dependencies]
url = "2"
Expand All @@ -45,7 +47,7 @@ thiserror = "1"
version = "1"
optional = true

[dependencies.mime_multipart]
[dependencies.mime_multipart]
version = "0.6"
optional = true

Expand Down

0 comments on commit 13011c3

Please sign in to comment.