Skip to content

Commit

Permalink
release 6.0.2 (#1101)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlierudolph committed Feb 6, 2018
1 parent c0c9dbc commit ee0c01e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions RELEASE_NOTES.md
Expand Up @@ -2,8 +2,16 @@

## Unreleased

## 6.0.2 (2018-01-26)

#### Bug Fixes

* fix parsing of git config when a value contains a newline

## 6.0.1 (2018-01-24)

#### Bug Fixes

* fixes displayed version number

## 6.0.0 (2018-01-15)
Expand Down
4 changes: 2 additions & 2 deletions features/git-town-version/version.feature
Expand Up @@ -7,10 +7,10 @@ Feature: git town: show the current Git Town version

Scenario: Using "version" flag
When I run `git-town version`
Then it prints "Git Town 6.0.1"
Then it prints "Git Town 6.0.2"


Scenario: Running outside of a Git repository
Given my workspace is currently not a Git repository
When I run `git-town version`
Then it prints "Git Town 6.0.1"
Then it prints "Git Town 6.0.2"
2 changes: 1 addition & 1 deletion src/cmd/version.go
Expand Up @@ -12,7 +12,7 @@ var versionCmd = &cobra.Command{
Short: "Displays the version",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Git Town 6.0.1")
fmt.Println("Git Town 6.0.2")
},
}

Expand Down

0 comments on commit ee0c01e

Please sign in to comment.