-
Notifications
You must be signed in to change notification settings - Fork 0
Remove version command and simplify version output #107
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6135337
Remove version command and simplify version output
gtsiolis 682210b
Remove version command from README
gtsiolis 37b701e
Hide build metadata from public version API
gtsiolis d8369d1
Keep linker metadata
gtsiolis 50bb380
Keep linker metadata without exposing it publicly
gtsiolis 74ab426
Add -v shorthand for --version flag
gtsiolis 04936d7
Fix integration test failures
gtsiolis dab153a
Remove skip from login integration test
gtsiolis 3146cf9
clean-up
carole-lavillonniere File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,31 @@ | ||
| package cmd | ||
|
|
||
| import ( | ||
| "strings" | ||
| "testing" | ||
| ) | ||
| import "testing" | ||
|
|
||
| func TestVersionLine(t *testing.T) { | ||
| got := versionLine() | ||
|
|
||
| if !strings.HasPrefix(got, "lstk ") { | ||
| t.Fatalf("versionLine() = %q, should start with 'lstk '", got) | ||
| if got != "lstk dev" { | ||
| t.Fatalf("versionLine() = %q, want %q", got, "lstk dev") | ||
| } | ||
| if !strings.Contains(got, "(") || !strings.Contains(got, ")") { | ||
| t.Fatalf("versionLine() = %q, should contain parentheses with commit and date", got) | ||
| } | ||
|
|
||
| func TestVersionFlagsPrintSameOutput(t *testing.T) { | ||
| longOut, err := executeWithArgs(t, "--version") | ||
| if err != nil { | ||
| t.Fatalf("expected no error from --version, got %v", err) | ||
| } | ||
|
|
||
| shortOut, err := executeWithArgs(t, "-v") | ||
| if err != nil { | ||
| t.Fatalf("expected no error from -v, got %v", err) | ||
| } | ||
|
|
||
| want := versionLine() + "\n" | ||
| if longOut != want { | ||
| t.Fatalf("--version output = %q, want %q", longOut, want) | ||
| } | ||
| if shortOut != longOut { | ||
| t.Fatalf("-v output = %q, want %q", shortOut, longOut) | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,7 @@ | ||
| package version | ||
|
|
||
| // Set via ldflags at build time. Must be variables, not constants, | ||
| // Set via ldflags at build time. Must be a variable, not a constant, | ||
| // because the linker can only modify variables at link time. | ||
| var ( | ||
| version = "dev" | ||
| commit = "none" | ||
| buildDate = "unknown" | ||
| ) | ||
| var version = "dev" | ||
|
|
||
| func Version() string { return version } | ||
| func Commit() string { return commit } | ||
| func BuildDate() string { return buildDate } | ||
| func Version() string { return version } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.