Skip to content

Commit 96d0a89

Browse files
committed
chore(release): 0.2.1
1 parent 1916ac2 commit 96d0a89

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.1] - 2022-11-08
6+
7+
### Bug Fixes
8+
9+
- Allow struct variants
10+
11+
### Documentation
12+
13+
- Add badges to README
14+
515
## [0.2.0] - 2022-10-29
616

717
### Bug Fixes

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tagname"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
authors = ["Krzysztof Hrynczenko <[email protected]>"]
66
description = "get the name of a variant in your enum as a string"
@@ -12,7 +12,7 @@ readme = "README.md"
1212
license = "MIT"
1313

1414
[dependencies]
15-
tagname_derive = { version = "0.2.0", path = "tagname_derive" }
15+
tagname_derive = { version = "0.2.1", path = "tagname_derive" }
1616

1717
[workspace]
1818
members = ["tagname_derive"]

cliff.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ commit_parsers = [
4848
{ message = "^refactor", group = "Refactor"},
4949
{ message = "^style", group = "Styling"},
5050
{ message = "^test", group = "Testing"},
51-
{ message = "^chore\\(release\\): prepare for", skip = true},
51+
{ message = "^chore\\(release\\): \\d\\.\\d\\.\\d", skip = true},
5252
{ message = "^chore", group = "Miscellaneous Tasks"},
5353
{ body = ".*security", group = "Security"},
5454
]

tagname_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tagname_derive"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
authors = ["Krzysztof Hrynczenko <[email protected]>"]
66
description = "derive(TagName) implementation"

0 commit comments

Comments
 (0)