Skip to content

Commit

Permalink
release: 12.0.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and DannyNemer committed Feb 19, 2025
1 parent e5eb24e commit e3f4ff5
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "12.0.0-beta.2"
".": "12.0.0-beta.3"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 12.0.0-beta.3 (2025-02-19)

Full Changelog: [v12.0.0-beta.2...v12.0.0-beta.3](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.2...v12.0.0-beta.3)

### Features

* **api:** api update ([#32](https://github.com/conductor-is/quickbooks-desktop-node/issues/32)) ([56e5df2](https://github.com/conductor-is/quickbooks-desktop-node/commit/56e5df25621608a7dfc1cd16bb2561f6a82e1b80))

## 12.0.0-beta.2 (2025-02-18)

Full Changelog: [v12.0.0-beta.1...v12.0.0-beta.2](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.1...v12.0.0-beta.2)
Expand Down
37 changes: 29 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conductor-node",
"version": "12.0.0-beta.2",
"version": "12.0.0-beta.3",
"description": "The official TypeScript library for the Conductor API",
"author": "Conductor <[email protected]>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -107,17 +107,38 @@
"default": "./dist/index.mjs"
},
"./*.mjs": {
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"default": [
"./dist/*.mjs",
"./dist/*/index.mjs"
]
},
"./*.js": {
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
"default": ["./dist/*.js", "./dist/*/index.js"]
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"default": [
"./dist/*.js",
"./dist/*/index.js"
]
},
"./*": {
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
"require": ["./dist/*.js", "./dist/*/index.js"],
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"require": [
"./dist/*.js",
"./dist/*/index.js"
],
"default": [
"./dist/*.mjs",
"./dist/*/index.mjs"
]
}
}
}
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '12.0.0-beta.2'; // x-release-please-version
export const VERSION = '12.0.0-beta.3'; // x-release-please-version

0 comments on commit e3f4ff5

Please sign in to comment.