From bc9554e597280aa005b5cdb9f313369614a576ff Mon Sep 17 00:00:00 2001 From: MaeIsBad <26093674+MaeIsBad@users.noreply.github.com> Date: Thu, 4 May 2023 12:59:59 +0200 Subject: [PATCH] Prepare for release (#72) --- .versions.yml | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 4 ++-- README.md | 2 +- veil-macros/Cargo.toml | 2 +- 5 files changed, 23 insertions(+), 5 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.versions.yml b/.versions.yml index d71e7d4c..0357ff1b 100644 --- a/.versions.yml +++ b/.versions.yml @@ -3,7 +3,7 @@ files: pattern: "\\[package\\][\\s\\S]*?version = \"{version}\"" - path: Cargo.toml - pattern: "veil-macros = . path = \"veil-macros\", version = \"{version}\" ." + pattern: "veil-macros = . path = \"veil-macros\", version = \"={version}\" ." - path: veil-macros/Cargo.toml pattern: "\\[package\\][\\s\\S]*?version = \"{version}\"" diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..73ffc7de --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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.6] - 2023-05-04 + +### Changed + +- Updated to syn v2 + + +[Unreleased]: https://github.com/primait/veil/compare/0.1.6...HEAD +[0.1.6]: https://github.com/primait/veil/compare/0.1.5...0.1.6 diff --git a/Cargo.toml b/Cargo.toml index 253e2470..63f8c11b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veil" -version = "0.1.5" +version = "0.1.6" edition = "2021" description = "Rust derive macro for redacting sensitive data in `std::fmt::Debug`" license = "MIT OR Apache-2.0" @@ -28,7 +28,7 @@ name = "disable_redaction" required-features = ["toggle"] [dependencies] -veil-macros = { path = "veil-macros", version = "=0.1.5" } +veil-macros = { path = "veil-macros", version = "=0.1.6" } once_cell = "1" [dev-dependencies] diff --git a/README.md b/README.md index ce004e48..4d0c5491 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add to your Cargo.toml: ```toml [dependencies] -veil = "0.1.5" +veil = "0.1.6" ``` Usage documentation can be found [here](https://docs.rs/veil). diff --git a/veil-macros/Cargo.toml b/veil-macros/Cargo.toml index 5ab5ba92..80482f18 100644 --- a/veil-macros/Cargo.toml +++ b/veil-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veil-macros" -version = "0.1.5" +version = "0.1.6" edition = "2021" description = "Veil procedural macros" license = "MIT OR Apache-2.0"