@risleylima/escpos 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [0.0
|
|
8
|
+
## [0.1.0] - 2025-11-23
|
|
9
9
|
|
|
10
10
|
### Added
|
|
11
11
|
- Complete JSDoc documentation for all public APIs
|
|
@@ -55,6 +55,6 @@ Initial stable release with USB and Serial adapter support.
|
|
|
55
55
|
|
|
56
56
|
## Version History
|
|
57
57
|
|
|
58
|
-
- **0.0
|
|
58
|
+
- **0.1.0** - Major dependency updates, 100% test coverage, complete documentation
|
|
59
59
|
- **0.0.14** - Initial stable release
|
|
60
60
|
|
package/docs/LIBRARY_OVERVIEW.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## 📋 General Information
|
|
4
4
|
|
|
5
5
|
- **Name**: `@risleylima/escpos`
|
|
6
|
-
- **Version**: `0.0
|
|
6
|
+
- **Version**: `0.1.0`
|
|
7
7
|
- **License**: MIT
|
|
8
8
|
- **Node.js**: `>=18.0.0`
|
|
9
9
|
- **Description**: Library to manage ESC/POS commands in Buffer (Node.js), then use an adapter to send the resulting data to the printer.
|
|
@@ -189,7 +189,7 @@ node -e "console.log(require('./package.json').version)"
|
|
|
189
189
|
|
|
190
190
|
# Check if version follows semantic versioning
|
|
191
191
|
# MAJOR.MINOR.PATCH
|
|
192
|
-
# 0.0.14 -> 0.0
|
|
192
|
+
# 0.0.14 -> 0.1.0 (minor update)
|
|
193
193
|
```
|
|
194
194
|
|
|
195
195
|
**What to check:**
|
|
@@ -302,7 +302,7 @@ npx np minor
|
|
|
302
302
|
|
|
303
303
|
## 🎯 Specific Recommendations for This Version
|
|
304
304
|
|
|
305
|
-
For v0.0
|
|
305
|
+
For v0.1.0, check especially:
|
|
306
306
|
|
|
307
307
|
1. **Major Dependency Updates:**
|
|
308
308
|
- [x] `usb@^2.16.0` - Promise-based API working
|
|
@@ -186,8 +186,7 @@ await printer.flush();
|
|
|
186
186
|
### Version Strategy
|
|
187
187
|
|
|
188
188
|
Since there are **NO breaking changes** to the public API:
|
|
189
|
-
- **Minor version bump**: `0.0.14` → `0.0
|
|
190
|
-
- **OR patch version**: `0.0.14` → `0.0.15` (if you want to be conservative)
|
|
189
|
+
- **Minor version bump**: `0.0.14` → `0.1.0` (published)
|
|
191
190
|
|
|
192
191
|
**NOT a major version** because public API is unchanged.
|
|
193
192
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Pre-Publish Verification Results
|
|
2
2
|
|
|
3
|
-
Date:
|
|
4
|
-
Version: 0.0
|
|
3
|
+
Date: 2025-11-23
|
|
4
|
+
Version: 0.1.0 (published)
|
|
5
5
|
|
|
6
6
|
## ✅ All Verifications Passed
|
|
7
7
|
|
|
@@ -89,7 +89,7 @@ Version: 0.0.15 (to be published)
|
|
|
89
89
|
### 10. Versioning Verification ✅
|
|
90
90
|
- **Status**: PASSED
|
|
91
91
|
- **Current Version**: 0.0.14
|
|
92
|
-
- **Next Version**: 0.0
|
|
92
|
+
- **Next Version**: 0.1.0 (minor update)
|
|
93
93
|
- **Semantic Versioning**: ✅ Follows semver
|
|
94
94
|
- **CHANGELOG**: ✅ Version 0.0.14 found in CHANGELOG
|
|
95
95
|
- **Breaking Changes**: None in public API
|
|
@@ -151,7 +151,7 @@ Version: 0.0.15 (to be published)
|
|
|
151
151
|
|
|
152
152
|
## 🎯 Ready for Publication
|
|
153
153
|
|
|
154
|
-
**All verifications passed!** The package
|
|
154
|
+
**All verifications passed!** The package was successfully published as v0.1.0.
|
|
155
155
|
|
|
156
156
|
### Next Steps:
|
|
157
157
|
1. Review CHANGELOG.md
|