Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions to v0.1.1-beta #80

Merged
merged 1 commit into from
Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@
*.out

# Dependency directories (remove the comment below to include it)
# vendor/
# vendor/

.DS_Store
2 changes: 1 addition & 1 deletion pkg/cybr/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions release.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "0.1.0-beta",
"go_version": "1.15.2"
"version": "0.1.1-beta",
"go_version": "1.15.8"
}