From 95b64da4484b7cf547e0436ab4dd56f5ff4991a7 Mon Sep 17 00:00:00 2001 From: Mohd Bilal Date: Thu, 12 Sep 2024 14:27:29 +0530 Subject: [PATCH] release/v0.1.4 (#56) --- changelog.md | 4 ++++ .../.hasura-connector/connector-metadata.yaml | 4 ++-- src/cli/index.ts | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 6669fc5..7f582b8 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ ## Unreleased +## [[0.1.4](https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.1.4)] 2024-09-12 + +- Fix spelling ([#55](https://github.com/hasura/ndc-open-api-lambda/pull/55)) + ## [[0.1.3](https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.1.3)] 2024-09-09 - Update NDC NodeJS Lambda SDK version to `v1.7.0`. ([#53](https://github.com/hasura/ndc-open-api-lambda/pull/53)) diff --git a/connector-definition/.hasura-connector/connector-metadata.yaml b/connector-definition/.hasura-connector/connector-metadata.yaml index 01d2d99..f7d1865 100644 --- a/connector-definition/.hasura-connector/connector-metadata.yaml +++ b/connector-definition/.hasura-connector/connector-metadata.yaml @@ -14,11 +14,11 @@ supportedEnvironmentVariables: commands: update: type: Dockerized - dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.3 + dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.4 commandArgs: [ "update" ] cliPlugin: type: Docker - dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.3 + dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.4 dockerComposeWatch: # Rebuild the container if a new package restore is required because package[-lock].json changed - path: package.json diff --git a/src/cli/index.ts b/src/cli/index.ts index ab9f5cb..800333e 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -5,7 +5,7 @@ import * as updateCmd from "./update"; import { exec, execSync } from "child_process"; export const program = new Command() - .version("0.1.3") + .version("0.1.4") .description("OAS Connector CLI") // .addCommand(initCmd.cmd) TODO: Enable when required by the CLI spec .addCommand(updateCmd.cmd)