Skip to content

Commit

Permalink
Merge pull request #132 from eqlabs/latenssi/prepare-0.4.0
Browse files Browse the repository at this point in the history
Bump version numbers, add version to main
  • Loading branch information
latenssi authored Jul 8, 2021
2 parents b89c0df + b017a95 commit 2c44fe7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@
__debug_bin
.vscode
tmp/

# Built binary
main
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Flow Wallet API v0.3.1
# Flow Wallet API v0.4.0

A custodial wallet service for tokens on the Flow blockchain.

Expand Down
2 changes: 1 addition & 1 deletion api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.1.0

info:
title: Flow Wallet API
version: 0.3.1
version: 0.4.0

servers:
- url: http://localhost:3000/v1
Expand Down
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ import (
"google.golang.org/grpc"
)

const version = "0.4.0"

var (
sha1ver string // sha1 revision used to build the program
buildTime string // when the executable was built
Expand Down Expand Up @@ -63,7 +65,7 @@ func main() {
flag.Parse()

if flgVersion {
fmt.Printf("Build on %s from sha1 %s\n", buildTime, sha1ver)
fmt.Printf("v%s build on %s from sha1 %s\n", version, buildTime, sha1ver)
os.Exit(0)
}

Expand Down

0 comments on commit 2c44fe7

Please sign in to comment.