File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 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.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and 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 `
Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ shared-version = true
4444file = " CHANGELOG.md"
4545search = ' ## \[Unreleased\]'
4646replace = """
47- <!-- ## [Unreleased] -->
47+ ## [Unreleased]
48+
4849## [{{version}}] - {{date}}\
4950"""
5051[[package .metadata .release .pre-release-replacements ]]
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments