Skip to content

Commit

Permalink
Prepare for release (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaeIsBad authored May 4, 2023
1 parent dfb7331 commit bc9554e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}\""
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion veil-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit bc9554e

Please sign in to comment.