From 0d138d59a9ae26d62ad5765963553755dd694ca0 Mon Sep 17 00:00:00 2001 From: Trent <2771466+tbillington@users.noreply.github.com> Date: Tue, 19 Dec 2023 18:27:14 +1100 Subject: [PATCH] Version 0.8 (#113) * bump kondo versions * update changelog --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 4 ++-- kondo-lib/Cargo.toml | 2 +- kondo-ui/Cargo.toml | 4 ++-- kondo/Cargo.toml | 4 ++-- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 783d49f..6b9d0c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.8 2023-12-19 + +- Add .NET (C# and F#) support by @mrivnak in https://github.com/tbillington/kondo/pull/106 +- Add Godot 4 support by @anosatsuk124 in https://github.com/tbillington/kondo/commit/764a00db7a257cdeade77ac3d5be66e80eadcd43 +- Add support for elixir language server artifact directories by @aschiavon91 in https://github.com/tbillington/kondo/pull/112 +- Add shell completion generation by @NickyMeuleman in https://github.com/tbillington/kondo/pull/100 +- Add CLion support for CMake by @mrivnak in https://github.com/tbillington/kondo/pull/107 +- Add .tox support to python projects by @jwodder in https://github.com/tbillington/kondo/pull/104 +- Add support for cleaning xwin-cache in cargo projects by @tbillington in https://github.com/tbillington/kondo/commit/936e2a6844462e11c1038cfc4725f8fa7e879f44 +- Fix date formatting for years, more accurate day duration by @tbillington + # 0.7 2023-07-06 - Add support for Gradle projects by @s-aditya-k and @Lipen in https://github.com/tbillington/kondo/pull/81, https://github.com/tbillington/kondo/pull/85 diff --git a/Cargo.lock b/Cargo.lock index f5bba96..50ce3dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,7 +206,7 @@ dependencies = [ [[package]] name = "kondo" -version = "0.7.0" +version = "0.8.0" dependencies = [ "clap", "clap_complete", @@ -215,7 +215,7 @@ dependencies = [ [[package]] name = "kondo-lib" -version = "0.7.0" +version = "0.8.0" dependencies = [ "ignore", "walkdir", diff --git a/kondo-lib/Cargo.toml b/kondo-lib/Cargo.toml index e0c92f3..0343d7a 100644 --- a/kondo-lib/Cargo.toml +++ b/kondo-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kondo-lib" -version = "0.7.0" +version = "0.8.0" authors = ["Trent Billington "] edition = "2021" description = "Shared code lib for kondo and kondo-ui." diff --git a/kondo-ui/Cargo.toml b/kondo-ui/Cargo.toml index c8080a9..d02a365 100644 --- a/kondo-ui/Cargo.toml +++ b/kondo-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kondo-ui" -version = "0.7.0" +version = "0.8.0" authors = ["Trent Billington "] description = """ kondo-ui is a filesystem cleaning tool that recursively searches directories @@ -21,7 +21,7 @@ druid = "0.7" [dependencies.kondo-lib] path = "../kondo-lib" -version = "0.7" +version = "0.8" [profile.release] incremental = false diff --git a/kondo/Cargo.toml b/kondo/Cargo.toml index 1d8d6bb..c25f817 100644 --- a/kondo/Cargo.toml +++ b/kondo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kondo" -version = "0.7.0" +version = "0.8.0" authors = ["Trent Billington "] description = """ kondo is a filesystem cleaning tool that recursively searches directories @@ -24,4 +24,4 @@ clap_complete = "4" [dependencies.kondo-lib] path = "../kondo-lib" -version = "0.7" +version = "0.8"