From 892e3928bfb6d7d76a55d1abff5555ff4d633688 Mon Sep 17 00:00:00 2001 From: Christopher Ribeiro Date: Mon, 27 Jul 2026 16:35:59 -0300 Subject: [PATCH] chore: version bump for the packages the changelog PR left unbumped The changelog-backfill PR (#43) updated package.json's `files` array for zod, typebox, rest, eslint-plugin, and better-auth to include CHANGELOG.md, but only bumped the version on the 8 packages actually touched by the externalization fix in the same PR. These 5 got the files-array change without a version bump, which means their published tarballs still won't contain CHANGELOG.md -- npm won't even accept republishing the same version with different content. Verified via `npm pack --dry-run` before and after. zod 2.0.1 -> 2.0.2, typebox 2.0.1 -> 2.0.2, rest 1.0.0 -> 1.0.1, eslint-plugin 0.1.3 -> 0.1.4, better-auth 1.0.1 -> 1.0.2 No code changed, only the files array + changelog. Verified with `npm pack --dry-run` that CHANGELOG.md is now included in all 5. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01EqaJ2TCZoyMCFjK4WcKxBR --- packages/better-auth/CHANGELOG.md | 6 ++++++ packages/better-auth/package.json | 2 +- packages/better-auth/src/version.ts | 2 +- packages/eslint-plugin/CHANGELOG.md | 6 ++++++ packages/eslint-plugin/package.json | 2 +- packages/eslint-plugin/src/version.ts | 2 +- packages/rest/CHANGELOG.md | 6 ++++++ packages/rest/package.json | 2 +- packages/rest/src/version.ts | 2 +- packages/typebox/CHANGELOG.md | 6 ++++++ packages/typebox/package.json | 2 +- packages/typebox/src/version.ts | 2 +- packages/zod/CHANGELOG.md | 6 ++++++ packages/zod/package.json | 2 +- packages/zod/src/version.ts | 2 +- 15 files changed, 40 insertions(+), 10 deletions(-) diff --git a/packages/better-auth/CHANGELOG.md b/packages/better-auth/CHANGELOG.md index 1ef0719..a25b015 100644 --- a/packages/better-auth/CHANGELOG.md +++ b/packages/better-auth/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to `@abacatepay/better-auth` are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [1.0.2] - 2026-07-27 + +### Fixed + +- `CHANGELOG.md` added to the published npm tarball (was previously excluded by `files`, so it only ever existed in the repo, not what `npm install` pulled down). + ## [1.0.1] - 2026-07-27 ### Fixed diff --git a/packages/better-auth/package.json b/packages/better-auth/package.json index 8c0fbff..295a057 100644 --- a/packages/better-auth/package.json +++ b/packages/better-auth/package.json @@ -1,6 +1,6 @@ { "name": "@abacatepay/better-auth", - "version": "1.0.1", + "version": "1.0.2", "repository": { "type": "git", "url": "git+https://github.com/AbacatePay/ecosystem.git" diff --git a/packages/better-auth/src/version.ts b/packages/better-auth/src/version.ts index 0bb6ed9..b83418a 100644 --- a/packages/better-auth/src/version.ts +++ b/packages/better-auth/src/version.ts @@ -3,4 +3,4 @@ /** * Current version of [@abacatepay/better-auth](https://www.npmjs.com/package/@abacatepay/better-auth). */ -export const version = '1.0.1' as const; +export const version = '1.0.2' as const; diff --git a/packages/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md index 99ec7e8..d3b3446 100644 --- a/packages/eslint-plugin/CHANGELOG.md +++ b/packages/eslint-plugin/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to `@abacatepay/eslint-plugin` are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [0.1.4] - 2026-07-27 + +### Fixed + +- `CHANGELOG.md` added to the published npm tarball (was previously excluded by `files`, so it only ever existed in the repo, not what `npm install` pulled down). + ## [0.1.3] - 2026-07-27 ### Fixed diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index c369610..9fa3de1 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@abacatepay/eslint-plugin", - "version": "0.1.3", + "version": "0.1.4", "type": "module", "main": "dist/index.js", "exports": { diff --git a/packages/eslint-plugin/src/version.ts b/packages/eslint-plugin/src/version.ts index a0eaae2..9de6d10 100644 --- a/packages/eslint-plugin/src/version.ts +++ b/packages/eslint-plugin/src/version.ts @@ -3,4 +3,4 @@ /** * Current version of [@abacatepay/eslint-plugin](https://www.npmjs.com/package/@abacatepay/eslint-plugin). */ -export const version = '0.1.3' as const; +export const version = '0.1.4' as const; diff --git a/packages/rest/CHANGELOG.md b/packages/rest/CHANGELOG.md index 9973221..6398600 100644 --- a/packages/rest/CHANGELOG.md +++ b/packages/rest/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to `@abacatepay/rest` are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [1.0.1] - 2026-07-27 + +### Fixed + +- `CHANGELOG.md` added to the published npm tarball (was previously excluded by `files`, so it only ever existed in the repo, not what `npm install` pulled down). + ## [1.0.0] - 2026-07-27 ### Changed diff --git a/packages/rest/package.json b/packages/rest/package.json index 4ee042d..a2b798f 100644 --- a/packages/rest/package.json +++ b/packages/rest/package.json @@ -1,6 +1,6 @@ { "name": "@abacatepay/rest", - "version": "1.0.0", + "version": "1.0.1", "type": "module", "sideEffects": false, "license": "Apache-2.0", diff --git a/packages/rest/src/version.ts b/packages/rest/src/version.ts index 59ebc8c..49c4531 100644 --- a/packages/rest/src/version.ts +++ b/packages/rest/src/version.ts @@ -3,7 +3,7 @@ /** * Current version of [@abacatepay/rest](https://www.npmjs.com/package/@abacatepay/rest). */ -export const version = '1.0.0' as const; +export const version = '1.0.1' as const; /** * Current version of the AbacatePay API. */ diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index 203cb72..46f7092 100644 --- a/packages/typebox/CHANGELOG.md +++ b/packages/typebox/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to `@abacatepay/typebox` are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [2.0.2] - 2026-07-27 + +### Fixed + +- `CHANGELOG.md` added to the published npm tarball (was previously excluded by `files`, so it only ever existed in the repo, not what `npm install` pulled down). + ## [2.0.1] - 2026-07-27 ### Fixed diff --git a/packages/typebox/package.json b/packages/typebox/package.json index 1c23ff3..9f6e724 100644 --- a/packages/typebox/package.json +++ b/packages/typebox/package.json @@ -1,6 +1,6 @@ { "name": "@abacatepay/typebox", - "version": "2.0.1", + "version": "2.0.2", "description": "Official TypeBox schemas for the AbacatePay API, including requests, responses, and webhooks.", "type": "module", "sideEffects": false, diff --git a/packages/typebox/src/version.ts b/packages/typebox/src/version.ts index 3e1c9cd..b91181e 100644 --- a/packages/typebox/src/version.ts +++ b/packages/typebox/src/version.ts @@ -3,7 +3,7 @@ /** * Current version of [@abacatepay/typebox](https://www.npmjs.com/package/@abacatepay/typebox). */ -export const version = '2.0.1' as const; +export const version = '2.0.2' as const; /** * Current version of the AbacatePay API. */ diff --git a/packages/zod/CHANGELOG.md b/packages/zod/CHANGELOG.md index ca76475..ba8f16a 100644 --- a/packages/zod/CHANGELOG.md +++ b/packages/zod/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to `@abacatepay/zod` are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [2.0.2] - 2026-07-27 + +### Fixed + +- `CHANGELOG.md` added to the published npm tarball (was previously excluded by `files`, so it only ever existed in the repo, not what `npm install` pulled down). + ## [2.0.1] - 2026-07-27 ### Fixed diff --git a/packages/zod/package.json b/packages/zod/package.json index d397e42..91e974b 100644 --- a/packages/zod/package.json +++ b/packages/zod/package.json @@ -1,6 +1,6 @@ { "name": "@abacatepay/zod", - "version": "2.0.1", + "version": "2.0.2", "description": "Official Zod schemas for the AbacatePay API, including requests, responses, and webhooks.", "type": "module", "sideEffects": false, diff --git a/packages/zod/src/version.ts b/packages/zod/src/version.ts index 9f8e579..5635a3f 100644 --- a/packages/zod/src/version.ts +++ b/packages/zod/src/version.ts @@ -3,7 +3,7 @@ /** * Current version of [@abacatepay/zod](https://www.npmjs.com/package/@abacatepay/zod). */ -export const version = '2.0.1' as const; +export const version = '2.0.2' as const; /** * Current version of the AbacatePay API. */