Skip to content

Commit 95b64da

Browse files
authored
release/v0.1.4 (#56)
1 parent 2ff36ad commit 95b64da

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## [[0.1.4](https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.1.4)] 2024-09-12
6+
7+
- Fix spelling ([#55](https://github.com/hasura/ndc-open-api-lambda/pull/55))
8+
59
## [[0.1.3](https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.1.3)] 2024-09-09
610

711
- Update NDC NodeJS Lambda SDK version to `v1.7.0`. ([#53](https://github.com/hasura/ndc-open-api-lambda/pull/53))

connector-definition/.hasura-connector/connector-metadata.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ supportedEnvironmentVariables:
1414
commands:
1515
update:
1616
type: Dockerized
17-
dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.3
17+
dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.4
1818
commandArgs: [ "update" ]
1919
cliPlugin:
2020
type: Docker
21-
dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.3
21+
dockerImage: ghcr.io/hasura/ndc-open-api-lambda:v0.1.4
2222
dockerComposeWatch:
2323
# Rebuild the container if a new package restore is required because package[-lock].json changed
2424
- path: package.json

src/cli/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as updateCmd from "./update";
55
import { exec, execSync } from "child_process";
66

77
export const program = new Command()
8-
.version("0.1.3")
8+
.version("0.1.4")
99
.description("OAS Connector CLI")
1010
// .addCommand(initCmd.cmd) TODO: Enable when required by the CLI spec
1111
.addCommand(updateCmd.cmd)

0 commit comments

Comments
 (0)