Skip to content

Commit

Permalink
Version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felixc committed Jan 23, 2017
1 parent 9eba93d commit 43b9f1e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
31 changes: 16 additions & 15 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
Unreleased
2017-01-23 - v0.7.0
* Add support for working with Exif thumbnails.
* Update bitflags dependency to 0.7; requires at minimum Rust 1.8.
* Minor documentation improvements.
* Documentation and sample code improvements.

2016-03-29 - v0.6.1
* Types now implement several more useful traits.
* Setup instructions now included in bundled crate.

2016-03-19 - v0.6.0
* Fixed FFI declarations from using Rust bools to c_ints (breaking change).
* Added optional support for accessing the XML XMP packet.
* Added optional support for reading raw tag values.
* Fix FFI declarations from using Rust bools to c_ints (breaking change).
* Add optional support for accessing the XML XMP packet.
* Add optional support for reading raw tag values.

2015-11-09 - v0.5.0
* Updated libc dependency version to 0.2.
* Update libc dependency version to 0.2.

2015-09-13 - v0.4.0
* Corrected mutability of some pointers (breaking change).
* Future-proofing representation of GExiv2Metadata against upcoming lint.
* Correct mutability of some pointers (breaking change).
* Future-proof representation of GExiv2Metadata against upcoming lint.

2015-09-06 - v0.3.0
* Added declarations for working with gexiv2's logging system.
* Add declarations for working with gexiv2's logging system.
* Slightly improved documentation.

2015-04-03 - v0.2.0
* Updated to work with Rust 1.0.0-beta.
* Added Clone trait to Orientation.
* Added two general gexiv2 management function declarations.
* Added declarations for per-field GPS info accessors.
* Added declarations for convenience getter/setters for comment metadata.
* Update to work with Rust 1.0.0-beta.
* Add Clone trait to Orientation.
* Add two general gexiv2 management function declarations.
* Add declarations for per-field GPS info accessors.
* Add declarations for convenience getter/setters for comment metadata.

2015-03-29 - v0.1.1
* Switched to the crates.io version of libc (new dependency).
* Switch to the crates.io version of libc (new dependency).

2015-03-02 - v0.1.0
* Initial version split off from rexiv2.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FFI declarations are provided here; for a usable Rust library, consider
the `rexiv2` crate.
"""

version = "0.6.1"
version = "0.7.0"
authors = ["Felix Crux <[email protected]>"]
license = "GPL-3.0+"
documentation = "https://felixcrux.com/files/doc/gexiv2_sys/"
Expand Down
4 changes: 2 additions & 2 deletions SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ this by adding a dependency on gexiv2-sys in your crate’s `Cargo.toml` file:

```toml
[dependencies]
gexiv2-sys = "0.6"
gexiv2-sys = "0.7"
libc = "0.2"
```

Expand All @@ -97,7 +97,7 @@ most likely need it in order to do anything useful with gexiv2-sys).
To enable one of the optional features of the crate, specify it as follows:

```toml
gexiv2-sys = { version = "0.6", features = ["raw-tag-access"] }
gexiv2-sys = { version = "0.7", features = ["raw-tag-access"] }
```

Alternatively, if you’d like to work off of the bleeding edge (note that this is
Expand Down
2 changes: 1 addition & 1 deletion src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ fn metadata_get_tag_type() {
}


// EXIF thumbnail getter/setters.
// Exif thumbnail getter/setters.

#[test]
fn metadata_get_and_set_exif_thumbnail_from_buffer() {
Expand Down

0 comments on commit 43b9f1e

Please sign in to comment.