Skip to content

Commit

Permalink
fix: Add semicolon at the end of the line (#64)
Browse files Browse the repository at this point in the history
This is the last PR.
  • Loading branch information
kdy1 authored Feb 7, 2025
1 parent d034095 commit d286027
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/shrink-to-fit-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "shrink-to-fit-macro"
repository = { workspace = true }
version = "0.2.4"
version = "0.2.5"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion crates/shrink-to-fit-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ fn expand_fields(
let field_name = Ident::new(&format!("_{}", i), field.span());

body_impl.extend(quote!(
#crate_name::helpers::ShrinkToFitDerefSpecialization::new(#field_name).shrink_to_fit()
#crate_name::helpers::ShrinkToFitDerefSpecialization::new(#field_name).shrink_to_fit();
));

let index = syn::Index::from(i);
Expand Down
4 changes: 2 additions & 2 deletions crates/shrink-to-fit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "shrink-to-fit"
repository = { workspace = true }
version = "0.2.8"
version = "0.2.9"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -14,7 +14,7 @@ rustdoc-args = ["--cfg", "docsrs"]
hashbrown = { workspace = true, optional = true, default-features = false }
indexmap = { workspace = true, optional = true, default-features = false }
serde_json = { workspace = true, optional = true, default-features = false }
shrink-to-fit-macro = { version = "0.2.4", path = "../shrink-to-fit-macro", optional = true }
shrink-to-fit-macro = { version = "0.2.5", path = "../shrink-to-fit-macro", optional = true }


[features]
Expand Down

0 comments on commit d286027

Please sign in to comment.