From 47355e65842bdbd10bc402a2e6e01b4b22169889 Mon Sep 17 00:00:00 2001 From: "contractual[bot]" Date: Sat, 28 Mar 2026 17:48:51 +0000 Subject: [PATCH] chore: version contracts --- .contractual/changesets/add-microchip-field.md | 7 ------- .contractual/snapshots/petstore.yaml | 4 ++++ .contractual/versions.json | 4 ++-- CHANGELOG.md | 4 ++++ 4 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 .contractual/changesets/add-microchip-field.md diff --git a/.contractual/changesets/add-microchip-field.md b/.contractual/changesets/add-microchip-field.md deleted file mode 100644 index 107f87d..0000000 --- a/.contractual/changesets/add-microchip-field.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"petstore": minor ---- - -## petstore - -- **[minor]** add optional microchipId field to Pet schema for tracking pet microchips diff --git a/.contractual/snapshots/petstore.yaml b/.contractual/snapshots/petstore.yaml index 1ee263a..eabc2e7 100644 --- a/.contractual/snapshots/petstore.yaml +++ b/.contractual/snapshots/petstore.yaml @@ -140,6 +140,10 @@ components: type: number minimum: 0 description: Weight of the pet in kilograms (optional) + microchipId: + type: string + pattern: '^[0-9]{15}$' + description: 15-digit microchip ID (optional) status: type: string enum: diff --git a/.contractual/versions.json b/.contractual/versions.json index a215889..46afb34 100644 --- a/.contractual/versions.json +++ b/.contractual/versions.json @@ -1,6 +1,6 @@ { "petstore": { - "version": "2.0.0", - "released": "2026-03-28T17:39:25.517Z" + "version": "2.1.0", + "released": "2026-03-28T17:48:50.734Z" } } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a84fca..b5991c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [petstore] v2.1.0 - 2026-03-28 + +- **[minor]** add optional microchipId field to Pet schema for tracking pet microchips + ## [petstore] v2.0.0 - 2026-03-28 - **[BREAKING]** remove path at paths./pets/{petId}