Skip to content

Commit 2c753af

Browse files
psmonclaude
andcommitted
Bump to v0.5.0 — OS coverage expansion
Reason for minor bump (not patch): expanding the npm wrapper from two OSes (linux + darwin) to three (linux + darwin + win32) is the most consequential change since v0.4.0 went out. Every platform that runs Node can now reach the tool through one consistent install line, not just the platform-native package manager. Update version pinning examples in README + README-KO + Home/index.html from 0.4.2 → 0.5.0 so users copy-paste the current release. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 22ed72f commit 2c753af

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

Home/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ <h2 class="ko">간편 설치 — OS별 한 줄</h2>
205205
<div class="install-card">
206206
<div><span class="os">Windows</span><span class="arch">x64</span></div>
207207
<pre>winget install psmon.CodeScan</pre>
208-
<div class="note en">Channel-PR pending. Until merged, use <code>winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.4.2</code> after enabling local manifests once: <code>winget settings --enable LocalManifestFiles</code> (admin).</div>
209-
<div class="note ko">채널 PR 머지 전까지는 <code>winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.4.2</code>. 사전에 관리자 PowerShell 로 <code>winget settings --enable LocalManifestFiles</code> 한 번 실행.</div>
208+
<div class="note en">Channel-PR pending. Until merged, use <code>winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.5.0</code> after enabling local manifests once: <code>winget settings --enable LocalManifestFiles</code> (admin).</div>
209+
<div class="note ko">채널 PR 머지 전까지는 <code>winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.5.0</code>. 사전에 관리자 PowerShell 로 <code>winget settings --enable LocalManifestFiles</code> 한 번 실행.</div>
210210
</div>
211211
<div class="install-card">
212212
<div><span class="os">macOS</span><span class="arch">arm64 (Apple Silicon)</span></div>

README-KO.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ TUI에서 프로젝트 탐색, 스캔, 프로젝트 관리, 키워드 검색,
7878
설치 후 확인:
7979

8080
```bash
81-
codescan --version # codescan v0.4.2 (또는 그 이상) 출력
81+
codescan --version # codescan v0.5.0 (또는 그 이상) 출력
8282
codescan --help
8383
```
8484

@@ -101,7 +101,7 @@ winget settings --enable LocalManifestFiles
101101

102102
```powershell
103103
# 이 저장소를 클론한 곳에서
104-
winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.4.2
104+
winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.5.0
105105
codescan --version
106106
```
107107

@@ -135,15 +135,15 @@ v1은 **glibc 기반 Linux만** 지원합니다. musl/Alpine 지원은 v2 검토
135135
```powershell
136136
iwr https://raw.githubusercontent.com/psmon/CodeScan/main/Script/install-win.ps1 -OutFile install-win.ps1
137137
.\install-win.ps1 # 최신
138-
.\install-win.ps1 -Version 0.4.2 # 버전 고정
138+
.\install-win.ps1 -Version 0.5.0 # 버전 고정
139139
```
140140

141141
**Linux / macOS (bash):**
142142

143143
```bash
144144
curl -fsSL https://raw.githubusercontent.com/psmon/CodeScan/main/Script/install.sh -o install.sh
145145
sh install.sh # 최신
146-
sh install.sh --version 0.4.2 # 버전 고정
146+
sh install.sh --version 0.5.0 # 버전 고정
147147
```
148148

149149
두 인스톨러 모두 GitHub에서 해당 릴리즈 자산을 받아 `checksums.txt` 기준 SHA256을 검증하고, 사용자 로컬 경로(Win: `~/.codescan/bin`, Unix: `~/.local/bin`)에 설치하며, `~/.codescan/{db,logs,config}`**사용자 데이터는 절대 건드리지 않습니다**.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Scanning can be launched from the terminal interface with method/comment extract
7878
After install, verify:
7979

8080
```bash
81-
codescan --version # should print: codescan v0.4.2 (or newer)
81+
codescan --version # should print: codescan v0.5.0 (or newer)
8282
codescan --help
8383
```
8484

@@ -101,7 +101,7 @@ Then install from the in-repo manifest (no admin needed after the opt-in):
101101

102102
```powershell
103103
# from a fresh clone of this repo
104-
winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.4.2
104+
winget install --manifest packaging\winget\manifests\p\psmon\CodeScan\0.5.0
105105
codescan --version
106106
```
107107

@@ -135,15 +135,15 @@ For environments without a package manager — or when you want to pin to a spec
135135
```powershell
136136
iwr https://raw.githubusercontent.com/psmon/CodeScan/main/Script/install-win.ps1 -OutFile install-win.ps1
137137
.\install-win.ps1 # latest
138-
.\install-win.ps1 -Version 0.4.2 # pinned
138+
.\install-win.ps1 -Version 0.5.0 # pinned
139139
```
140140

141141
**Linux / macOS (bash):**
142142

143143
```bash
144144
curl -fsSL https://raw.githubusercontent.com/psmon/CodeScan/main/Script/install.sh -o install.sh
145145
sh install.sh # latest
146-
sh install.sh --version 0.4.2 # pinned
146+
sh install.sh --version 0.5.0 # pinned
147147
```
148148

149149
Both installers download the matching release asset from GitHub, verify SHA256 against `checksums.txt`, install to a user-local path (Win: `~/.codescan/bin`, Unix: `~/.local/bin`), and **never touch user data** under `~/.codescan/{db,logs,config}`.

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.2
1+
0.5.0

0 commit comments

Comments
 (0)