From 30c6e1ceba6757e4f02b4242c7281e6cdd9e9061 Mon Sep 17 00:00:00 2001 From: "adam.gloyne" Date: Thu, 26 Oct 2023 16:10:59 +0100 Subject: [PATCH] Bump version --- sqs/README.md | 2 +- sqs/json_schemas/channel.json | 6 +++++- sqs/json_schemas/operation.json | 6 +++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/sqs/README.md b/sqs/README.md index d62db3a2..5f8281ed 100644 --- a/sqs/README.md +++ b/sqs/README.md @@ -12,7 +12,7 @@ For publish-subscribe scenarios, use as a **publish** Operation Binding Object, ## Version -Current version is `0.1.0`. +Current version is `0.2.0`. diff --git a/sqs/json_schemas/channel.json b/sqs/json_schemas/channel.json index c5856e77..6e5279d7 100644 --- a/sqs/json_schemas/channel.json +++ b/sqs/json_schemas/channel.json @@ -21,7 +21,11 @@ }, "bindingVersion": { "type": "string", - "description": "The version of this binding.", + "enum": [ + "0.1.0", + "0.2.0" + ], + "description": "The version of this binding. If omitted, 'latest' MUST be assumed.", "default": "latest" } }, diff --git a/sqs/json_schemas/operation.json b/sqs/json_schemas/operation.json index e32880d8..9bd1e5bf 100644 --- a/sqs/json_schemas/operation.json +++ b/sqs/json_schemas/operation.json @@ -20,7 +20,11 @@ }, "bindingVersion": { "type": "string", - "description": "The version of this binding.", + "enum": [ + "0.1.0", + "0.2.0" + ], + "description": "The version of this binding. If omitted, 'latest' MUST be assumed.", "default": "latest" } },