Export library code in pkg/ (#1391)

* Export library code in `pkg/`

* new doc page
This commit is contained in:
John Kerl 2023-09-10 17:15:13 -04:00 committed by GitHub
parent 93b7c8eac0
commit 268a96d002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
358 changed files with 1076 additions and 693 deletions

2
pkg/version/doc.go Normal file
View 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
View 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"