Skip to content
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]
## [0.4.5] - 2026-01-27

### Features

Expand All @@ -14,6 +14,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- `remove`: Remove directory names from a category
- Create entirely new custom directory categories

### Configuration

- Added `Homebrew` to Package Caches special directories

## [0.4.4] - 2026-01-25

### Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "zpace"
version = "0.4.4"
version = "0.4.5"
description = "A CLI tool to discover what's consuming your disk space"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
1 change: 1 addition & 0 deletions test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def test_package_caches(self):
assert identify_special_dir_name(".deno") == "Package Caches"
assert identify_special_dir_name(".pnpm") == "Package Caches"
assert identify_special_dir_name(".uv") == "Package Caches"
assert identify_special_dir_name("Homebrew") == "Package Caches"

def test_ide_config(self):
assert identify_special_dir_name(".idea") == "IDE Config"
Expand Down
1 change: 1 addition & 0 deletions zpace/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
".bundle",
".bun",
".deno",
"homebrew",
},
"IDE Config": {".idea", ".vscode", ".vs", ".eclipse", ".fleet"},
"Git Repos": {".git"},
Expand Down