From 40f015f5b7e8ad389a8d4198112ac8784556936c Mon Sep 17 00:00:00 2001 From: scouten-adobe Date: Sun, 23 Oct 2022 02:34:39 +0000 Subject: [PATCH] Prepare 0.7.0 release --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bbceab..90ceef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,23 @@ This project adheres to [Semantic Versioning](https://semver.org), except that Do not manually edit this file. It will be automatically updated when a new release is published. +## 0.7.0 +_23 October 2022_ + +* Add example (port of MyReadXMP app) ([#82](https://github.com/adobe/xmp-toolkit-rs/pull/82)) +* Add `XmpMeta::struct_field` ([#107](https://github.com/adobe/xmp-toolkit-rs/pull/107)) +* Add `XmpMeta::contains_struct_field` ([#106](https://github.com/adobe/xmp-toolkit-rs/pull/106)) +* Add `XmpMeta::compose_struct_field_path` ([#105](https://github.com/adobe/xmp-toolkit-rs/pull/105)) +* Fix memory leaks when returning strings from C++ to Rust ([#104](https://github.com/adobe/xmp-toolkit-rs/pull/104)) +* Implement `Display` for `XmpDateTime` ([#103](https://github.com/adobe/xmp-toolkit-rs/pull/103)) +* Add `XmpMeta::localized_text` accessor ([#99](https://github.com/adobe/xmp-toolkit-rs/pull/99)) +* Refactor `XmpMeta` documentation for property accessors ([#98](https://github.com/adobe/xmp-toolkit-rs/pull/98)) +* (MINOR) Rename `XmpMeta::does_property_exist` to `XmpMeta::contains_property` ([#97](https://github.com/adobe/xmp-toolkit-rs/pull/97)) +* (MINOR) Rename `XmpMeta.array_property` to `.property_array` ([#96](https://github.com/adobe/xmp-toolkit-rs/pull/96)) +* Add typed property setters ([#95](https://github.com/adobe/xmp-toolkit-rs/pull/95)) +* Add typed property getters ([#94](https://github.com/adobe/xmp-toolkit-rs/pull/94)) +* Remove `Eq` trait bound on `XmpValue` ([#93](https://github.com/adobe/xmp-toolkit-rs/pull/93)) + ## 0.6.0 _20 October 2022_ diff --git a/Cargo.toml b/Cargo.toml index 30307c3..649f186 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xmp_toolkit" -version = "0.6.0" +version = "0.7.0" description = "Rust-language bindings for Adobe's XMP Toolkit" license = "MIT OR Apache-2.0" repository = "https://github.com/adobe/xmp-toolkit-rs" diff --git a/README.md b/README.md index 2c814f7..34f8d96 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -xmp_toolkit = "0.6.0" +xmp_toolkit = "0.7.0" ``` ## Breaking changes in 0.x series