diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d0b1086..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -./conceal \ No newline at end of file diff --git a/bin/conceal b/bin/conceal new file mode 100755 index 0000000..e5b2f2a Binary files /dev/null and b/bin/conceal differ diff --git a/pkg/conceal/version.go b/pkg/conceal/version.go index 0298b32..abd72a4 100644 --- a/pkg/conceal/version.go +++ b/pkg/conceal/version.go @@ -3,11 +3,11 @@ package conceal import "fmt" // Version field is a SemVer that should indicate the baked-in version of conceal -var Version = "2.0.1" +var Version = "3.0.0" // 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. -var Tag = "dev" +var Tag = "release" // FullVersionName is the user-visible aggregation of version and tag of this codebase var FullVersionName = fmt.Sprintf("%s-%s", Version, Tag)