From dd78ed41406b460cea6c407f789a5eb3ae8bd2f8 Mon Sep 17 00:00:00 2001 From: Sharfy Adamantine Date: Wed, 3 Jun 2026 10:20:00 +0200 Subject: [PATCH 1/2] chore(changeset): promote to v1.0.0 stable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a major changeset so the next changesets Release PR bumps 0.13.0 → 1.0.0. The release contains no schema changes from v0.13.0; the bump signals that the lexicons, types, and generated exports are now considered stable and switches the package onto standard SemVer semantics. --- .changeset/promote-to-v1-stable.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/promote-to-v1-stable.md diff --git a/.changeset/promote-to-v1-stable.md b/.changeset/promote-to-v1-stable.md new file mode 100644 index 00000000..3a5d938e --- /dev/null +++ b/.changeset/promote-to-v1-stable.md @@ -0,0 +1,11 @@ +--- +"@hypercerts-org/lexicon": major +--- + +Promote `@hypercerts-org/lexicon` to v1.0.0 — first stable release. + +No schema changes from v0.13.0. This release marks the lexicons, +TypeScript types, and generated exports as stable for downstream +consumers and shifts the package onto standard SemVer semantics (where +future breaking changes will bump the major version, non-breaking +additions the minor version, and fixes the patch version). From 5987d08decf55e9c98b78f48c6cd7d87374bec25 Mon Sep 17 00:00:00 2001 From: Sharfy Adamantine Date: Thu, 4 Jun 2026 12:28:46 +0200 Subject: [PATCH 2/2] chore(changeset): clarify v1.0.0 promotion scope after #212 The release that ships v1.0.0 will combine this changeset with the 'increase activity work scope string limit' changeset (added via #212 / 871608f). Reword this changeset so it describes its own contribution (force major bump only) rather than implying the whole v1.0.0 release is schema-clean. --- .changeset/promote-to-v1-stable.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.changeset/promote-to-v1-stable.md b/.changeset/promote-to-v1-stable.md index 3a5d938e..0f333522 100644 --- a/.changeset/promote-to-v1-stable.md +++ b/.changeset/promote-to-v1-stable.md @@ -4,8 +4,16 @@ Promote `@hypercerts-org/lexicon` to v1.0.0 — first stable release. -No schema changes from v0.13.0. This release marks the lexicons, -TypeScript types, and generated exports as stable for downstream -consumers and shifts the package onto standard SemVer semantics (where -future breaking changes will bump the major version, non-breaking -additions the minor version, and fixes the patch version). +This changeset contributes no schema or type changes of its own; it +exists solely to force a major version bump so the package crosses the +0.x → 1.0 line. From v1.0.0 onward, the lexicons, TypeScript types, +and generated exports are considered stable for downstream consumers, +and the package follows standard SemVer semantics: breaking changes +bump the major version, non-breaking additions the minor version, and +fixes the patch version. (Prior to v1.0.0, breaking changes were +allowed under `minor` per the SemVer 0.x convention — see +`.claude/skills/writing-changesets/SKILL.md`.) + +Any other changesets pending at the time this one is consumed are +folded into the same v1.0.0 release; see the other entries below for +those contributions.