aba-pos-sdk-node 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ ## [1.0.6]
2
+ - Fixed: Missing CHANGELOG.md file.
3
+
4
+ ## [1.0.5]
5
+ - Added CHANGELOG.md to see what's new in each release
6
+
7
+ ## [1.0.4]
8
+ - Support macOS Arm64 and Windows Arm64
9
+ - Breaking changes: _waitForResponse() is private now. You should get response from sendDataByUsb and sendDataByIp directly.
10
+ - Remove broken Linux core library. The new core library will be available in the next release.
11
+ - Fixed: Never receive response after sending data.
12
+
13
+ ## [1.0.3]
14
+ - Bug fixes
15
+
16
+ ## [1.0.2]
17
+ - Bug fixes
18
+
19
+ ## [1.0.1]
20
+ - Bug fixes
21
+
22
+ ## [1.0.0]
23
+ - Initial release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aba-pos-sdk-node",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Node.js Addons for ABA POS SDK developed by ABA Bank. This package allows you to connect with the ABA POS terminal.",
5
5
  "main": "aba_pos_sdk.min.js",
6
6
  "type": "commonjs",
@@ -32,6 +32,7 @@
32
32
  "files": [
33
33
  "aba_pos_sdk.min.js",
34
34
  "addons/",
35
- "README.md"
35
+ "README.md",
36
+ "CHANGELOG.md"
36
37
  ]
37
- }
38
+ }