Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@
## Changed
## Removed
## Fixed
- Use the right characters for newlines on windows.
## Security

# 0.70.1 (2024-08-20)
Expand Down
4 changes: 2 additions & 2 deletions bindgen/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -927,9 +927,9 @@ impl Bindings {
if !self.options.disable_header_comment {
let version =
option_env!("CARGO_PKG_VERSION").unwrap_or("(unknown version)");
writeln!(
write!(
writer,
"/* automatically generated by rust-bindgen {version} */{NL}",
"/* automatically generated by rust-bindgen {version} */{NL}{NL}",
)?;
}

Expand Down