Skip to content

Commit 5946ad4

Browse files
authored
chore: v1.9.1 release (#53)
1 parent 71386f1 commit 5946ad4

5 files changed

Lines changed: 24 additions & 6 deletions

File tree

.github/memory-bank/active-context.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DexReader Active Context
22

33
**Last Updated**: 1 June 2026
4-
**Version**: v1.9.0
4+
**Version**: v1.9.1
55
**Mode**: Active Development
66

77
> **Purpose**: This is your session dashboard. Read this FIRST when resuming work to understand what's happening NOW, what was decided recently, and what to work on next. Keep all entries as short, concise as possible
@@ -10,7 +10,7 @@
1010

1111
## Current Status
1212

13-
**v1.9.0 Released**: 1 June 2026 ✅
13+
**v1.9.1 Released**: 1 June 2026 ✅
1414

1515
**Monitoring Period**: Now through ~21 June 2026
1616

@@ -50,6 +50,15 @@
5050

5151
## Recent Changes (Last 1-2 Weeks)
5252

53+
### 1 June 2026 - v1.9.1 Hotfix ✅
54+
55+
- **Type**: Hotfix Release
56+
- **Summary**: Fixed CI workflow tag creation command syntax error
57+
- **Key Changes**: Corrected git tag command in release workflow (missing space before `-a` switch)
58+
- **Impact**: No app changes - CI infrastructure fix only
59+
- **Status**: ✅ Released
60+
- **CHANGELOG**: Documented in CHANGELOG.md v1.9.1 section
61+
5362
### 1 June 2026 - v1.9.0 Release ✅
5463

5564
- **Type**: Feature Release

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
git config user.email "github-actions[bot]@users.noreply.github.com"
9898
9999
# Create annotated tag
100-
git tag -a "$TAG"
100+
git tag "$TAG"
101101
102102
# Push tag
103103
git push origin "$TAG"

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8+
## [1.9.1] - 2026-06-01
9+
10+
### Fixed
11+
12+
- Fix CI workflow tag creation command syntax error (missing space before `-a` switch)
13+
- Corrected git tag command to properly create annotated tags in release workflow
14+
15+
---
16+
817
## [1.9.0] - 2026-06-01
918

1019
### Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dexreader",
33
"productName": "DexReader",
4-
"version": "1.9.0",
4+
"version": "1.9.1",
55
"description": "A personal MangaDex client built with Electron and React.",
66
"type": "module",
77
"main": "./out/main/index.js",

0 commit comments

Comments
 (0)