diff --git a/Cargo.lock b/Cargo.lock index 4b7ad58..cdd5fac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "partially" -version = "0.1.0" +version = "0.1.1" dependencies = [ "partially", "partially_derive", @@ -67,7 +67,7 @@ dependencies = [ [[package]] name = "partially_derive" -version = "0.1.0" +version = "0.1.1" dependencies = [ "darling", "proc-macro2", diff --git a/crates/partially/CHANGELOG.md b/crates/partially/CHANGELOG.md index aa77e21..c8ff46c 100644 --- a/crates/partially/CHANGELOG.md +++ b/crates/partially/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/bengreenier/partially/compare/partially-v0.1.0...partially-v0.1.1) - 2023-10-31 + +### Added +- Add `attribute`, `skip_attributes` opts ([#5](https://github.com/bengreenier/partially/pull/5)) + +### Other +- release ([#1](https://github.com/bengreenier/partially/pull/1)) + ## [0.1.0](https://github.com/bengreenier/partially/releases/tag/partially-v0.1.0) - 2023-09-17 ### Added diff --git a/crates/partially/Cargo.toml b/crates/partially/Cargo.toml index fa01861..4aa9441 100644 --- a/crates/partially/Cargo.toml +++ b/crates/partially/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "partially" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Provides the Partial trait, and an optional macro to mirror a struct, wrapping each field in an Option" @@ -26,4 +26,4 @@ serde_json = "1.0.108" partially = { path = ".", features = ["derive"] } [dependencies] -partially_derive = { version = "0.1.0", path = "../partially_derive", optional = true } +partially_derive = { version = "0.1.1", path = "../partially_derive", optional = true } diff --git a/crates/partially_derive/CHANGELOG.md b/crates/partially_derive/CHANGELOG.md new file mode 100644 index 0000000..7a1e865 --- /dev/null +++ b/crates/partially_derive/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/bengreenier/partially/compare/partially_derive-v0.1.0...partially_derive-v0.1.1) - 2023-10-31 + +### Added +- Add `attribute`, `skip_attributes` opts ([#5](https://github.com/bengreenier/partially/pull/5)) diff --git a/crates/partially_derive/Cargo.toml b/crates/partially_derive/Cargo.toml index 3a79231..2556b13 100644 --- a/crates/partially_derive/Cargo.toml +++ b/crates/partially_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "partially_derive" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Macros for the partially crate"