diff --git a/CHANGELOG.md b/CHANGELOG.md index 348f1da..b2a385c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v 1.2.1: + +* fix build with LLVM 18 for bindgen + v1.2.0: * fix build on darwin * support nix 2.19 diff --git a/Cargo.lock b/Cargo.lock index b403cb9..8f6a1ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -655,7 +655,7 @@ dependencies = [ [[package]] name = "nix-du" -version = "1.2.0" +version = "1.2.1" dependencies = [ "bindgen", "bytesize", diff --git a/Cargo.nix b/Cargo.nix index fb33729..d022b9b 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -1909,7 +1909,7 @@ rec { }; "nix-du" = rec { crateName = "nix-du"; - version = "1.2.0"; + version = "1.2.1"; edition = "2018"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index e18c508..a794646 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nix-du" -version = "1.2.0" +version = "1.2.1" authors = ["Guillaume Girol "] license = "LGPL-3.0" edition = "2018"