From 4fe4954423d1aa1c7fed61057289c782584800a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Patroix?= Date: Thu, 16 Feb 2023 11:09:12 +0100 Subject: [PATCH] Upgrade to 0.12.1 --- helm/tezos-api-gateway/Chart.yaml | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- src/config/openapi/spec/info/index.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/helm/tezos-api-gateway/Chart.yaml b/helm/tezos-api-gateway/Chart.yaml index db0ec97..4107c57 100644 --- a/helm/tezos-api-gateway/Chart.yaml +++ b/helm/tezos-api-gateway/Chart.yaml @@ -15,13 +15,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.12.0 +version: 0.12.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.12.0" +appVersion: "0.12.1" dependencies: - name: postgresql diff --git a/package-lock.json b/package-lock.json index e41be6c..48198b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tezos-api-gateway", - "version": "0.12.0", + "version": "0.12.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tezos-api-gateway", - "version": "0.12.0", + "version": "0.12.1", "license": "ISC", "dependencies": { "@opentelemetry/api-metrics": "^0.16.0", diff --git a/package.json b/package.json index 34b31cc..7ab3dd8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tezos-api-gateway", - "version": "0.12.0", + "version": "0.12.1", "description": "", "main": "index.js", "scripts": { diff --git a/src/config/openapi/spec/info/index.ts b/src/config/openapi/spec/info/index.ts index 996cc45..9bce880 100644 --- a/src/config/openapi/spec/info/index.ts +++ b/src/config/openapi/spec/info/index.ts @@ -1,7 +1,7 @@ const info = { title: 'tezos-api-gateway', description: 'Webservice responsible to interact with Tezos Blockchain', - version: '0.12.0', + version: '0.12.1', }; export default info;