From cd0e25cd89e3cc61a3dee2601861fcf3e23e8c20 Mon Sep 17 00:00:00 2001 From: Joe Garcia Date: Fri, 19 Feb 2021 11:33:49 -0500 Subject: [PATCH] Bump versions to v0.1.1-beta (#80) --- .github/workflows/ci.yml | 2 ++ .gitignore | 4 +++- pkg/cybr/version.go | 2 +- release.json | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d28ab77..4ae8675 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,8 @@ jobs: PAS_HOSTNAME: ${{ secrets.PAS_HOSTNAME }} PAS_USERNAME: ${{ secrets.PAS_USERNAME }} PAS_PASSWORD: ${{ secrets.PAS_PASSWORD }} + CCP_CLIENT_CERT: ${{ secrets.CCP_CLIENT_CERT }} + CCP_CLIENT_PRIVATE_KEY: ${{ secrets.CCP_CLIENT_PRIVATE_KEY }} steps: - name: Checkout Source Code uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index db24b87..b9527e3 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,6 @@ *.out # Dependency directories (remove the comment below to include it) -# vendor/ \ No newline at end of file +# vendor/ + +.DS_Store \ No newline at end of file diff --git a/pkg/cybr/version.go b/pkg/cybr/version.go index f83748b..095667e 100644 --- a/pkg/cybr/version.go +++ b/pkg/cybr/version.go @@ -3,7 +3,7 @@ package cybr import "fmt" // Version field is a SemVer that should indicate the baked-in version of conceal -var Version = "0.1.0" +var Version = "0.1.1" // Tag field denotes the specific build type for the broker. It may be replaced by compile-time variables if needed to // provide the git commit information in the final binary. diff --git a/release.json b/release.json index e942e75..46c36e6 100644 --- a/release.json +++ b/release.json @@ -1,4 +1,4 @@ { - "version": "0.1.0-beta", - "go_version": "1.15.2" + "version": "0.1.1-beta", + "go_version": "1.15.8" } \ No newline at end of file