Skip to content

Commit c4b5456

Browse files
committed
remove accidental debug prints
fixes #21
1 parent 058deac commit c4b5456

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ 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+
### Fixed
9+
- removed accidental debug prints
10+
811
## [0.10.0] - 2024-08-13
912
### Added
1013
- derive `AttributeIdent` by default, converting the `StructIdent` to `snake_case`

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ shared-version = true
4444
file = "CHANGELOG.md"
4545
search = '## \[Unreleased\]'
4646
replace = """
47-
<!-- ## [Unreleased] -->
47+
## [Unreleased]
48+
4849
## [{{version}}] - {{date}}\
4950
"""
5051
[[package.metadata.release.pre-release-replacements]]

macro/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ impl StructAttrs {
194194
.clone()
195195
.parser();
196196
while !parser.is_empty() {
197-
eprintln!("{}", parser.to_token_stream());
198197
if let Some(not) = parser.next_tt_not() {
199198
if let Some(kw) = parser.next_keyword("ident") {
200199
if let Some(ident_span) = ident_span {

src/std_impls.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ impl<T: AttributePositional> AttributeValue for Vec<T> {
172172
span: b.span.join().span_range(),
173173
})
174174
} else {
175-
dbg!(input);
176175
Err(input.error("expected `[` or `(`"))
177176
}
178177
}

0 commit comments

Comments
 (0)