conductor-node 12.0.0 → 12.0.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 +8 -0
- package/README.md +2 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 12.0.1 (2025-04-03)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v12.0.0...v12.0.1](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0...v12.0.1)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* update migration note in README ([7061f8f](https://github.com/conductor-is/quickbooks-desktop-node/commit/7061f8fa032fd1beada1f9a6608596d293f85cf3))
|
|
10
|
+
|
|
3
11
|
## 12.0.0 (2025-04-03)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v12.0.0-beta.24...v12.0.0](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.24...v12.0.0)
|
package/README.md
CHANGED
|
@@ -42,7 +42,8 @@ The REST API documentation can be found on [docs.conductor.is](https://docs.cond
|
|
|
42
42
|
npm install conductor-node
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
> [!IMPORTANT]
|
|
46
|
+
> If you're migrating from the old `conductor-node` package (v11 or earlier), please see the [upgrade guide](https://docs.conductor.is/qbd-api/upgrade-node).
|
|
46
47
|
|
|
47
48
|
## Key features
|
|
48
49
|
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.0.
|
|
1
|
+
export const VERSION = '12.0.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.0.
|
|
1
|
+
export declare const VERSION = "12.0.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '12.0.
|
|
1
|
+
export const VERSION = '12.0.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|