Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.8 #113

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kondo-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kondo-lib"
version = "0.7.0"
version = "0.8.0"
authors = ["Trent Billington <[email protected]>"]
edition = "2021"
description = "Shared code lib for kondo and kondo-ui."
Expand Down
4 changes: 2 additions & 2 deletions kondo-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kondo-ui"
version = "0.7.0"
version = "0.8.0"
authors = ["Trent Billington <[email protected]>"]
description = """
kondo-ui is a filesystem cleaning tool that recursively searches directories
Expand All @@ -21,7 +21,7 @@ druid = "0.7"

[dependencies.kondo-lib]
path = "../kondo-lib"
version = "0.7"
version = "0.8"

[profile.release]
incremental = false
Expand Down
4 changes: 2 additions & 2 deletions kondo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kondo"
version = "0.7.0"
version = "0.8.0"
authors = ["Trent Billington <[email protected]>"]
description = """
kondo is a filesystem cleaning tool that recursively searches directories
Expand All @@ -24,4 +24,4 @@ clap_complete = "4"

[dependencies.kondo-lib]
path = "../kondo-lib"
version = "0.7"
version = "0.8"
Loading