Skip to content

Commit 2652038

Browse files
committed
feat: v1.10.0
1 parent 0594293 commit 2652038

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lombok-macros"
3-
version = "1.9.6"
3+
version = "1.10.0"
44
edition = "2024"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"

src/generate/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pub(crate) mod constant;
1+
pub(crate) mod r#const;
22
pub(crate) mod func;

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ pub(crate) mod visibility;
77

88
pub(crate) use cfg::r#type::*;
99
pub(crate) use func::r#type::*;
10-
pub(crate) use generate::constant::*;
10+
pub(crate) use generate::r#const::*;
1111
pub(crate) use generate::func::*;
12-
pub(crate) use parse::{constant::*, func::*};
12+
pub(crate) use parse::{r#const::*, func::*};
1313
pub(crate) use proc_macro::TokenStream as OldTokenStream;
1414
pub(crate) use proc_macro2::{TokenStream as NewTokenStream, TokenTree as NewTokenTree};
1515
pub(crate) use quote::{ToTokens, format_ident, quote};

src/parse/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pub(crate) mod constant;
1+
pub(crate) mod r#const;
22
pub(crate) mod func;

0 commit comments

Comments
 (0)