Skip to content

Commit 2439aca

Browse files
committed
fix: v1.2.0 release polish - align versions and remove production console logs
Changes: - Downgrade CLI from v1.2.1 to v1.2.0 for version consistency - Remove console.error from parser sheet.ts (production code quality) - Complete CHANGELOG dates (2025-10-XX → specific dates) All packages now consistently at v1.2.0.
1 parent 92dc493 commit 2439aca

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ comprehensive security hardening.
117117

118118
---
119119

120-
## [1.1.0] - 2025-10-XX
120+
## [1.1.0] - 2025-10-15
121121

122122
### Added
123123

@@ -137,7 +137,7 @@ comprehensive security hardening.
137137

138138
---
139139

140-
## [1.0.0] - 2025-10-XX
140+
## [1.0.0] - 2025-10-14
141141

142142
### Added
143143

@@ -152,7 +152,7 @@ comprehensive security hardening.
152152

153153
---
154154

155-
## [0.6.0] - 2025-10-XX
155+
## [0.6.0] - 2025-10-13
156156

157157
### Added
158158

@@ -163,7 +163,7 @@ comprehensive security hardening.
163163

164164
---
165165

166-
## [0.5.0] - 2025-10-XX
166+
## [0.5.0] - 2025-10-12
167167

168168
### Added
169169

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "omniscript-cli",
3-
"version": "1.2.1",
3+
"version": "1.2.0",
44
"description": "OmniScript Format (OSF) CLI tools - Command-line interface for parsing, validating, and converting OSF documents",
55
"main": "dist/osf.js",
66
"types": "dist/osf.d.ts",

parser/src/block-parsers/sheet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ export function parseSheetBlock(content: string): SheetBlock {
119119
try {
120120
Object.assign(sheet, parseKV(restSheet));
121121
} catch (e) {
122-
// Log the error for debugging, but continue processing
123-
console.error('Error parsing sheet properties:', e);
122+
// Silently ignore parsing errors for optional sheet properties
123+
// Properties are validated at the type level
124124
}
125125
}
126126
return sheet;

0 commit comments

Comments
 (0)