Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
v0.6.0 "Providence"
Browse files Browse the repository at this point in the history
Starting with this release, I'll choose a codename for every feature
release, sometimes with the intention of depicting a theme for this
release's development cycle.

This release is called "Providence" because the new `holo diff`
subcommand allows system administrators to act more prudently in the
resolution of manual changes to configuration targets.

The next release will be called "Harmony" because it will focus on
making the interface as well as the mental model of Holo more
consistent, making all the features feel more like a unified whole.
  • Loading branch information
majewsky committed Sep 30, 2015
1 parent de8e098 commit cace241
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ import (

//Note: This line is parsed by the Makefile to get the version string. If you
//change the format, adjust the Makefile too.
var version = "v0.5"
var version = "v0.6.0"
var codename = "Providence"

func main() {
//a command word must be given as first argument
Expand All @@ -51,7 +52,7 @@ func main() {
case "scan":
command = commandScan
case "version", "--version":
fmt.Println(version)
fmt.Printf("%s \"%s\"\n", version, codename)
return
default:
commandHelp()
Expand Down

0 comments on commit cace241

Please sign in to comment.