File tree 4 files changed +6
-4
lines changed 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- <!-- ## [Unreleased] -->
7
+ ## [ Unreleased]
8
+ ### Fixed
9
+ - removed accidental debug prints
10
+
8
11
## [ 0.10.0] - 2024-08-13
9
12
### Added
10
13
- derive ` AttributeIdent ` by default, converting the ` StructIdent ` to ` snake_case `
Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ shared-version = true
44
44
file = " CHANGELOG.md"
45
45
search = ' ## \[Unreleased\]'
46
46
replace = """
47
- <!-- ## [Unreleased] -->
47
+ ## [Unreleased]
48
+
48
49
## [{{version}}] - {{date}}\
49
50
"""
50
51
[[package .metadata .release .pre-release-replacements ]]
Original file line number Diff line number Diff line change @@ -194,7 +194,6 @@ impl StructAttrs {
194
194
. clone ( )
195
195
. parser ( ) ;
196
196
while !parser. is_empty ( ) {
197
- eprintln ! ( "{}" , parser. to_token_stream( ) ) ;
198
197
if let Some ( not) = parser. next_tt_not ( ) {
199
198
if let Some ( kw) = parser. next_keyword ( "ident" ) {
200
199
if let Some ( ident_span) = ident_span {
Original file line number Diff line number Diff line change @@ -172,7 +172,6 @@ impl<T: AttributePositional> AttributeValue for Vec<T> {
172
172
span : b. span . join ( ) . span_range ( ) ,
173
173
} )
174
174
} else {
175
- dbg ! ( input) ;
176
175
Err ( input. error ( "expected `[` or `(`" ) )
177
176
}
178
177
}
You can’t perform that action at this time.
0 commit comments