Skip to content

Commit 305b060

Browse files
authored
build: release version 1.6.5 (#401)
1 parent 7bf1d85 commit 305b060

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Costrict Change Log
22

3+
## [1.6.5]
4+
5+
- Optimize file watching and ignore patterns
6+
- Updates project references and contact information
7+
- Optimize error handling and localization
8+
- Sync roocode
9+
310
## [1.6.4]
411

512
- Fix wsl2 `your 131072x1 screen size is bogus. expect trouble`

src/core/costrict/codebase-index/workspace-event-monitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ export class WorkspaceEventMonitor {
321321
// Ignore directories that match certain patterns
322322
if (stats.isDirectory()) {
323323
const dirName = path.basename(filePath)
324-
if (["tests", "mocks"].includes(dirName)) {
324+
if (["tests", "mocks", "build"].includes(dirName)) {
325325
return true
326326
}
327327
}

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%extension.displayName.long%",
44
"description": "%extension.description%",
55
"publisher": "zgsm-ai",
6-
"version": "1.6.4",
6+
"version": "1.6.5",
77
"icon": "assets/images/shenma_robot_logo_big.png",
88
"galleryBanner": {
99
"color": "#617A91",

0 commit comments

Comments
 (0)