Skip to content

Commit

Permalink
Version 0.8 (#113)
Browse files Browse the repository at this point in the history
* bump kondo versions

* update changelog
  • Loading branch information
tbillington committed Dec 19, 2023
1 parent fb4c924 commit 0d138d5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
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"

0 comments on commit 0d138d5

Please sign in to comment.