Skip to content

Commit f34748d

Browse files
committed
Update version to 0.0.2.
1 parent 6169d8f commit f34748d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func main() {
1111
app := cli.NewApp()
1212
app.Name = "fetch"
1313
app.Usage = "download a file or folder from a specific release of a public or private GitHub repo subject to the Semantic Versioning constraints you impose"
14-
app.UsageText = "fetch [global options] [<repo-download-filter>] <local-download-path>\n (See https://github.com/gruntwork-io/fetch for additional docs.)"
14+
app.UsageText = "fetch [global options] [<repo-download-filter>] <local-download-path>\n (See https://github.com/gruntwork-io/fetch for examples, argument definitions, and additional docs.)"
1515
app.Version = getVersion(Version, VersionPrerelease)
1616

1717
app.Flags = []cli.Flag{

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
// The main version number that is being run at the moment.
4-
const Version = "0.0.1"
4+
const Version = "0.0.2"
55

66
// A pre-release marker for the version. If this is "" (empty string)
77
// then it means that it is a final release. Otherwise, this is a pre-release

0 commit comments

Comments
 (0)