Releases: commonkestrel/image_search
Releases · commonkestrel/image_search
v0.4.4
Small bugfix:
- Fixed API changes (#6)
- Reduced code repetition between blocking and async
- Added a blocking example
v0.4.2
Bugfix:
- Fixed
tokio
runtime error (#2)
- Updated dependencies
v0.4.1
Small bug fixes and changes:
- Changed default client to hyper (fixed #1)
- Improved docs
- Replaced
Result<T, Error>
with SearchResult<T>
(Same type, just used inconsistently)
v0.4.0
Transition away from reqwest and tokio to surf and async-std.
What's changed:
- Removed reqwest in favor of surf
- Remove tokio in favor of async-std
- Standardize
Error
and SearchResult
across blocking and async APIs
- Add optional http backends thanks to surf through features
- Remove unnecessary
unwrap()
s in favor of explicitly returning an error or expect()
0.3.0
This release contains a major revamp to the image-downloading process.
Changes:
- Added concurrent downloading to images
- Added adjustable timeout in case of image failure
- Improved image downloader error handling
- Improved documentation
- Added logo
0.2.2
Default async searching, with optional blocking
feature, similar to reqwest
.