8000 fix(cmd/cometbft/commands/version): update the output for v1 by andynog · Pull Request #2546 · cometbft/cometbft · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(cmd/cometbft/commands/version): update the output for v1 #2546

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 1 commit into from
Mar 11, 2024
Merged
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
6 changes: 3 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package version

const (
// CMTSemVer is the used as the fallback version of CometBFT
// when not using git describe. It is formatted with semantic versioning.
CMTSemVer = "0.39.0-dev"
// CMTSemVer is used as the fallback version of CometBFT
// when not using git describe. It uses semantic versioning format.
CMTSemVer = "1.0.0-dev"
// ABCISemVer is the semantic version of the ABCI protocol.
ABCISemVer = "2.0.0"
ABCIVersion = ABCISemVer
Expand Down
0