File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments