From 98d79461660f595637fa710d59a654f242b4c3f7 Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Thu, 7 Mar 2024 12:00:00 +0000 Subject: [PATCH] v0.3.4 --- Cargo.lock | 2 +- Cargo.nix | 2 +- Cargo.toml | 2 +- Changelog.md | 7 +++++++ 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7528b78..fd662b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1220,7 +1220,7 @@ dependencies = [ [[package]] name = "nixseparatedebuginfod" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.nix b/Cargo.nix index ea9f720..cbad3e7 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -3697,7 +3697,7 @@ rec { }; "nixseparatedebuginfod" = rec { crateName = "nixseparatedebuginfod"; - version = "0.3.3"; + version = "0.3.4"; edition = "2021"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index c7eb467..5ffae3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nixseparatedebuginfod" -version = "0.3.3" +version = "0.3.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/Changelog.md b/Changelog.md index 3cc36a5..796727d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,13 @@ SPDX-FileCopyrightText: 2023 Guillaume Girol SPDX-License-Identifier: CC0-1.0 --> +# `v0.3.4` + +* fix crash on malformed ELF +* fix parsing `extra-` options in nix configuration +* module: fix using with nix 2.3 +* don't emit timestamps in logs (journald does it already) + # `v0.3.3` * handle sources inlined from another derivation (for example C++ template instantiation). Related: nixpkgs PR 279455