Skip to content

Commit 1678dcd

Browse files
committed
Changelog update
1 parent de0425e commit 1678dcd

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.3.0] - 2025-09-21
11+
12+
### Added
13+
- Official Windows support with full CI testing across Windows, macOS, and Ubuntu
14+
- Command-line search functionality (`chunkhound search`) for semantic and regex queries without starting MCP
15+
- CONTRIBUTING.md guidelines
16+
- Setup wizard when `.chunkhound.json` isn't found in the directory
17+
18+
### Fixed
19+
- File exclude patterns (**/tmp/**) on Linux systems
20+
- Regex search path resolution across platforms
21+
1022
## [3.2.0] - 2025-08-24
1123

1224
### Enhanced

src/components/ChangelogStats.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ const ChangelogStats: React.FC<ChangelogStatsProps> = ({ versions }) => {
2828

2929
// Format days ago display
3030
const formatDaysAgo = (days: number): string => {
31-
if (days === 0) return "Today";
32-
if (days === 1) return "Yesterday";
31+
// if (days === 0) return "Today";
32+
// if (days === 1) return "Yesterday";
3333
return `${days}`;
3434
};
3535

3636
const formatDaysLabel = (days: number): string => {
37-
if (days === 0) return "Released";
38-
if (days === 1) return "Day Ago";
37+
// if (days === 0) return "Released";
38+
// if (days === 1) return "Day Ago";
3939
return "Days Ago";
4040
};
4141

0 commit comments

Comments
 (0)