From 419d4f54c819fba8c1724167a3e4a59a06abb9b0 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 22 Aug 2023 18:19:08 -0700 Subject: [PATCH] Version 0.1.6 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d33519f..99e5bf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.1.6 (2023-08-22) + +- Fix handling of .secretsignore files without [secrets] section (#61) +- Add detection for gitlab tokens (Fixes #62) +- Better detection of hex secrets + ## 0.1.5 (2022-06-26) - Fix excessive false positives from random string detection diff --git a/Cargo.lock b/Cargo.lock index 15741f1..0a02c32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -779,7 +779,7 @@ dependencies = [ [[package]] name = "ripsecrets" -version = "0.1.5" +version = "0.1.6" dependencies = [ "clap 4.2.5", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 2603ece..34b402b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ripsecrets" description = "A command-line tool to prevent committing secret keys into your source code" -version = "0.1.5" +version = "0.1.6" edition = "2021" repository = "https://github.com/sirwart/ripsecrets" homepage = "https://github.com/sirwart/ripsecrets"