From 506c4b743ac9193c8a88a50866752ef61cf529c1 Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Wed, 21 Mar 2018 08:26:26 -0700 Subject: [PATCH 1/2] Updated readme --- Readme.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 6b72ad7..9428565 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,10 @@ You can see an example on how to use it in `tests/test.rs`. ## Changelog +### Version 0.4.0 + +* Updated num-traits dependency to 0.2. + ### Version 0.3.6 * Updated arrayvec dependency to 0.4. From 94a99423ea71ab4f00fd689a908e6470ae37ac81 Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Thu, 7 Nov 2019 22:56:41 +0100 Subject: [PATCH 2/2] Update arrayvec to 0.5 and bump version --- Cargo.toml | 4 ++-- Readme.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) 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 9428565..17e9e64 100644 --- a/Readme.md +++ b/Readme.md @@ -36,6 +36,10 @@ 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.