Skip to content

Commit

Permalink
Bump version to 0.3.2 (#154)
Browse files Browse the repository at this point in the history
* Bump version to 0.3.2

* Update version strings
  • Loading branch information
m1ghtym0 authored May 4, 2021
1 parent 58d5514 commit 2afe8c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.11)

project(marblerun VERSION 0.3.1)
project(marblerun VERSION 0.3.2)
execute_process(COMMAND bash "-c" "git rev-parse HEAD | tr -d '\n'" OUTPUT_VARIABLE GIT_COMMIT)
find_package(OpenEnclave CONFIG REQUIRED)

Expand Down
4 changes: 2 additions & 2 deletions cli/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
)

// Version is the CLI version
var Version = "0.3.1-dev"
var Version = "0.0.0" // Don't touch! Automatically injected at build-time.

// GitCommit is the git commit hash
var GitCommit string
var GitCommit string // Don't touch! Automatically injected at build-time.

func newVersionCmd() *cobra.Command {
cmd := &cobra.Command{
Expand Down
4 changes: 2 additions & 2 deletions cmd/coordinator/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
)

// Version is the Coordinator version
var Version = "0.3.1-dev"
var Version = "0.0.0" // Don't touch! Automatically injected at build-time.

// GitCommit is the git commit hash
var GitCommit string
var GitCommit string // Don't touch! Automatically injected at build-time.

func run(validator quote.Validator, issuer quote.Issuer, sealDir string, sealer core.Sealer, recovery recovery.Recovery) {
// Setup logging with Zap Logger
Expand Down

0 comments on commit 2afe8c0

Please sign in to comment.