Skip to content

Commit d4a0928

Browse files
committed
chore: Release
1 parent 3f99765 commit d4a0928

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
<!-- ## [Unreleased] -->
8+
## [0.9.0] - 2024-03-17
89
### Added
910
- Attributes can now be nested, i.e. `#[outer(inner(key = value))]`.
1011

@@ -67,7 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6768
- **Breaking Change**: Compile time verify if ident is given through helper
6869
trait
6970

70-
[unreleased]: https://github.com/ModProg/attribute-derive/compare/v0.8.1...HEAD
71+
[unreleased]: https://github.com/ModProg/attribute-derive/compare/v0.9.0...HEAD
72+
[0.9.0]: https://github.com/ModProg/attribute-derive/compare/v0.8.1...v0.9.0
7173
[0.8.1]: https://github.com/ModProg/attribute-derive/compare/v0.8.0...v0.8.1
7274
[0.8.0]: https://github.com/ModProg/attribute-derive/compare/v0.7.1...v0.8.0
7375
[0.7.1]: https://github.com/ModProg/attribute-derive/compare/v0.7.0...v0.7.1

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ categories = ["rust-patterns", "development-tools::procedural-macro-helpers", "p
66
description = "Clap like parsing for attributes in proc-macros"
77
documentation = "https://docs.rs/attribute-derive"
88
include = ["src/**/*", "LICENSE-*", "README.md", "docs/**/*"]
9-
keywords = ["derive", "macro", "attribute", "arguments", "syn", "proc-macro"]
9+
keywords = ["derive", "macro", "attribute", "arguments", "syn"]
1010
license = "MIT OR Apache-2.0"
1111
readme = "README.md"
1212
repository = "https://github.com/ModProg/attribute-derive"
1313
name = "attribute-derive"
14-
version = "0.8.1"
14+
version = "0.9.0"
1515
edition = "2021"
1616

1717
[lib]
@@ -28,7 +28,7 @@ syn = "2"
2828
syn-full = ["syn/full"]
2929

3030
[dependencies.attribute-derive-macro]
31-
version = "0.8.1"
31+
version = "0.9.0"
3232
path = "macro"
3333

3434
[dev-dependencies]

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["derive", "macro"]
77
license = "MIT"
88
readme = "README.md"
99
repository = "https://github.com/ModProg/attribute-derive"
10-
version = "0.8.1"
10+
version = "0.9.0"
1111
edition = "2021"
1212
name = "attribute-derive-macro"
1313

0 commit comments

Comments
 (0)