mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Export library code in pkg/ (#1391)
* Export library code in `pkg/` * new doc page
This commit is contained in:
parent
93b7c8eac0
commit
268a96d002
358 changed files with 1076 additions and 693 deletions
2
pkg/version/doc.go
Normal file
2
pkg/version/doc.go
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
// Package version hold the current Miller version string, such as "v6.0.0".
|
||||
package version
|
||||
7
pkg/version/version.go
Normal file
7
pkg/version/version.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package version
|
||||
|
||||
// STRING is the current Miller major/minor/patch version as a single string.
|
||||
// Nominally things like "6.0.0" for a release, then "6.0.0-dev" in between.
|
||||
// This makes it clear that a given build is on the main dev branch, not a
|
||||
// particular snapshot tag.
|
||||
var STRING string = "6.9.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue