Skip to content

Commit 2a301c7

Browse files
jhlee0409claude
andcommitted
chore: release v1.5.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 16f004b commit 2a301c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "claude-code-history-viewer",
33
"private": true,
4-
"version": "1.4.0",
4+
"version": "1.5.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "claude-code-history-viewer"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
description = "Claude Code 대화 기록을 탐색하고 분석하는 데스크톱 애플리케이션"
55
authors = ["JaeHyeok Lee"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Claude Code History Viewer",
4-
"version": "1.4.0",
4+
"version": "1.5.0",
55
"identifier": "com.claude.history-viewer",
66
"build": {
77
"frontendDist": "../dist",

src/test/SessionItem.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ describe("SessionItem", () => {
199199
/>
200200
);
201201

202-
expect(screen.getByText("Archived")).toBeInTheDocument();
202+
expect(screen.getByLabelText("Archived session")).toBeInTheDocument();
203203
});
204204
it("should not show archived icon for non-archived sessions", () => {
205205
const session = createMockSession({

0 commit comments

Comments
 (0)