-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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,5 +1,10 @@ | ||
// Package consts houses some constants needed across k6 | ||
package consts | ||
|
||
import "go.k6.io/k6/version" | ||
|
||
// Version contains the current semantic version of k6. | ||
const Version = "0.56.0" | ||
// | ||
// Deprecated: alias to support the legacy versioning API. Use the new version package, | ||
// it will be removed as soon as the external services stop to depend on it. | ||
const Version = version.SemVer |
This file contains 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Package version handles k6 versioning | ||
package version | ||
|
||
// SemVer contains the current version of k6 | ||
// represented using Semantic Versioning expression. | ||
const SemVer = "0.56.0" |