diff --git a/Cargo.toml b/Cargo.toml index 91b831e..846ceaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "immeta" -version = "0.4.0" +version = "0.4.1" authors = ["Vladimir Matveev "] description = "An image metadata parsing library" license = "MIT" @@ -12,4 +12,4 @@ keywords = ["image", "metadata"] [dependencies] byteorder = "1.0" num-traits = "0.2" -arrayvec = "0.4" +arrayvec = "0.5" diff --git a/Readme.md b/Readme.md index 6b72ad7..17e9e64 100644 --- a/Readme.md +++ b/Readme.md @@ -6,7 +6,7 @@ immeta, an image metadata inspection library in Rust [travis]: https://img.shields.io/travis/netvl/immeta.svg?style=flat-square [crates]: https://img.shields.io/crates/v/immeta.svg?style=flat-square -[Documentation](https://netvl.github.io/immeta/) +[Documentation](https://docs.rs/immeta/) immeta is an image metadata processing library. It allows you to inspect metadata, that is, image dimensions, color information, etc. of various image formats. @@ -28,7 +28,7 @@ Just add a dependency to your `Cargo.toml`: ```toml [dependencies] -immeta = "0.3" +immeta = "0.4" ``` You can see an example on how to use it in `tests/test.rs`. @@ -36,6 +36,14 @@ You can see an example on how to use it in `tests/test.rs`. ## Changelog +### Version 0.4.1 + +* Updated arrayvec dependency to 0.5. + +### Version 0.4.0 + +* Updated num-traits dependency to 0.2. + ### Version 0.3.6 * Updated arrayvec dependency to 0.4.