@yawlabs/lemonsqueezy-mcp 0.10.4 → 0.10.5
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 +18 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@yawlabs/lemonsqueezy-mcp` are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and versioning follows [SEMVER.md](./SEMVER.md).
|
|
4
4
|
|
|
5
|
+
## [0.10.5] -- 2026-05-16
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **`release.sh` step 3 now bumps `server.json` alongside `package.json` and stages it in the release commit.** Previously `server.json` was treated as a derived artifact only -- `release.yml` ran a `jq` step at publish time to sync `version` and `packages[0].version` from `$GITHUB_REF_NAME`, but the committed file was never updated, so a manual `mcp-publisher publish` outside CI would push a stale registry version. The new `node -e` step mirrors the CI `jq` so the committed source matches the latest published version on every release. No `jq` dependency added (`node` was already a release-flow prereq).
|
|
10
|
+
- **`server.json` resynced to 0.10.4** to clear the existing drift (file was last touched at 0.10.0; releases 0.10.1 through 0.10.4 all relied on CI's publish-time `jq` rewrite). 0.10.5 going forward, the workstation release path keeps it current automatically.
|
|
11
|
+
|
|
12
|
+
### Docs
|
|
13
|
+
|
|
14
|
+
- **CHANGELOG footers backfilled** for v0.10.0 through v0.10.4. Adds the missing `[X.Y.Z]: .../compare/...` lines per Keep a Changelog and points `[Unreleased]` at `v0.10.4...HEAD` (previously stuck at `v0.9.3...HEAD`).
|
|
15
|
+
|
|
5
16
|
## [0.10.4] -- 2026-05-16
|
|
6
17
|
|
|
7
18
|
### Changed
|
|
@@ -307,7 +318,13 @@ Hardening pass for unattended automation against live billing flows.
|
|
|
307
318
|
|
|
308
319
|
Initial release. 59 tools covering all 17 LemonSqueezy API resources.
|
|
309
320
|
|
|
310
|
-
[Unreleased]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.
|
|
321
|
+
[Unreleased]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.10.5...HEAD
|
|
322
|
+
[0.10.5]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.10.4...v0.10.5
|
|
323
|
+
[0.10.4]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.10.3...v0.10.4
|
|
324
|
+
[0.10.3]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.10.2...v0.10.3
|
|
325
|
+
[0.10.2]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.10.1...v0.10.2
|
|
326
|
+
[0.10.1]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.10.0...v0.10.1
|
|
327
|
+
[0.10.0]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.9.3...v0.10.0
|
|
311
328
|
[0.9.3]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.9.2...v0.9.3
|
|
312
329
|
[0.9.2]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.9.1...v0.9.2
|
|
313
330
|
[0.9.1]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.9.0...v0.9.1
|
package/dist/index.js
CHANGED
|
@@ -32779,7 +32779,7 @@ function readAuditLogResource(uri) {
|
|
|
32779
32779
|
}
|
|
32780
32780
|
|
|
32781
32781
|
// src/index.ts
|
|
32782
|
-
var version2 = true ? "0.10.
|
|
32782
|
+
var version2 = true ? "0.10.5" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
32783
32783
|
var subcommand = process.argv[2];
|
|
32784
32784
|
if (subcommand === "version" || subcommand === "--version") {
|
|
32785
32785
|
console.log(version2);
|
package/package.json
CHANGED