From 106da860faf5912e649ff7c77f326bfc0a462cd9 Mon Sep 17 00:00:00 2001 From: Benjamin Bengfort Date: Thu, 1 Dec 2022 18:41:06 -0600 Subject: [PATCH] version bump v1.6.0 --- .env.template | 2 +- containers/docker-compose.yaml | 6 +++--- pkg/version.go | 6 +++--- web/gds-admin-ui/package.json | 2 +- web/gds-user-ui/package.json | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.env.template b/.env.template index cc6e68ade..96bd71493 100644 --- a/.env.template +++ b/.env.template @@ -211,7 +211,7 @@ REACT_APP_TRISATEST_ANALYTICS_ID= # GDS User UI Build Args REACT_APP_TRISA_BASE_URL=http://localhost:4437/v1/ REACT_APP_ANALYTICS_ID= -REACT_APP_VERSION_NUMBER=v1.5.5-dev +REACT_APP_VERSION_NUMBER=v1.6.1-dev REACT_APP_AUTH0_DOMAIN= REACT_APP_AUTH0_CLIENT_ID= REACT_APP_AUTH0_REDIRECT_URI=http://localhost:3000/auth/callback diff --git a/containers/docker-compose.yaml b/containers/docker-compose.yaml index 2f6b9f831..8e11fa2f8 100644 --- a/containers/docker-compose.yaml +++ b/containers/docker-compose.yaml @@ -192,7 +192,7 @@ services: args: REACT_APP_TRISA_BASE_URL: http://localhost:4437/v1/ REACT_APP_ANALYTICS_ID: ${REACT_APP_STAGING_VASPDIRECTORY_ANALYTICS_ID} - REACT_APP_VERSION_NUMBER: v1.5.5-dev + REACT_APP_VERSION_NUMBER: v1.6.1-dev REACT_APP_GIT_REVISION: ${REACT_APP_GIT_REVISION} REACT_APP_SENTRY_DSN: ${REACT_APP_SENTRY_DSN} REACT_APP_SENTRY_ENVIRONMENT: development @@ -225,7 +225,7 @@ services: REACT_APP_GOOGLE_CLIENT_ID: ${REACT_APP_GOOGLE_CLIENT_ID} REACT_APP_SENTRY_DSN: ${REACT_APP_ADMIN_SENTRY_DSN} REACT_APP_SENTRY_ENVIRONMENT: "development" - REACT_APP_VERSION_NUMBER: v1.5.5-dev + REACT_APP_VERSION_NUMBER: v1.6.1-dev REACT_APP_GIT_REVISION: ${REACT_APP_GIT_REVISION} image: trisa/gds-testnet-admin-ui depends_on: @@ -387,7 +387,7 @@ services: REACT_APP_GOOGLE_CLIENT_ID: ${REACT_APP_GOOGLE_CLIENT_ID} REACT_APP_SENTRY_DSN: ${REACT_APP_ADMIN_SENTRY_DSN} REACT_APP_SENTRY_ENVIRONMENT: "development" - REACT_APP_VERSION_NUMBER: v1.5.5-dev + REACT_APP_VERSION_NUMBER: v1.6.1-dev REACT_APP_GIT_REVISION: ${REACT_APP_GIT_REVISION} image: trisa/gds-admin-ui depends_on: diff --git a/pkg/version.go b/pkg/version.go index 62d2a20b5..0b1991987 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -8,10 +8,10 @@ import "fmt" // Version component constants for the current build. const ( VersionMajor = 1 - VersionMinor = 5 - VersionPatch = 4 + VersionMinor = 6 + VersionPatch = 0 VersionReleaseLevel = "" - VersionReleaseNumber = 26 + VersionReleaseNumber = 27 ) // Set the GitVersion via -ldflags="-X 'github.com/trisacrypto/directory/pkg.GitVersion=$(git rev-parse --short HEAD)'" diff --git a/web/gds-admin-ui/package.json b/web/gds-admin-ui/package.json index e07e5a252..2f072cee4 100644 --- a/web/gds-admin-ui/package.json +++ b/web/gds-admin-ui/package.json @@ -1,6 +1,6 @@ { "name": "gds-admin-ui", - "version": "1.5.4", + "version": "1.6.0", "private": true, "dependencies": { "@hookform/devtools": "^4.1.0", diff --git a/web/gds-user-ui/package.json b/web/gds-user-ui/package.json index d821a7669..d310aef57 100644 --- a/web/gds-user-ui/package.json +++ b/web/gds-user-ui/package.json @@ -1,6 +1,6 @@ { "name": "gds-user-ui", - "version": "1.5.4", + "version": "1.6.0", "private": true, "dependencies": { "@babel/plugin-proposal-private-property-in-object": "^7.16.7",