diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8e0fd..cb73160 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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. +## 1.3.0 +_10 April 2023_ + +* Fix #135: `XmpMeta::from_str_with_options` returns empty data model if no `xmp_meta` wrapper exists ([#174](https://github.com/adobe/xmp-toolkit-rs/pull/174)) +* (MINOR) Update to Rust 2021 edition ([#173](https://github.com/adobe/xmp-toolkit-rs/pull/173)) +* Update num_enum requirement from 0.5.7 to 0.6.0 ([#169](https://github.com/adobe/xmp-toolkit-rs/pull/169)) + ## 1.2.1 _27 March 2023_ diff --git a/Cargo.toml b/Cargo.toml index 67a9d3b..e936186 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xmp_toolkit" -version = "1.2.1" +version = "1.3.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 a2992f3..ce355f3 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -xmp_toolkit = "1.2.1" +xmp_toolkit = "1.3.0" ``` ## License