Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akshat committed Oct 12, 2018
1 parent 08ad34c commit 7d8196a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [WIP: v0.2.0] - 2018-10-11
## [v0.2.0] - 2018-10-11
### Added
- Configurable kubernetes job retries (on failure)
- Meta fields for proc contributor details
### Modified
- Changelog format
- CI golang version. Reason: [kubernetes client-go issue](https://github.com/kubernetes/client-go/issues/449)
Expand All @@ -16,4 +17,4 @@ All notable changes to this project will be documented in this file.
- Add Authentication Headers: Email-Id and Access-Token
- Add Job success and failure metrics

[WIP: v0.2.0]: https://github.com/gojektech/proctor/compare/v0.1.0...v0.2.0
[v0.2.0]: https://github.com/gojektech/proctor/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion cmd/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func NewCmd(printer io.Printer) *cobra.Command {
Short: "Print version of Proctor command-line tool",
Long: `Example: proctor version`,
Run: func(cmd *cobra.Command, args []string) {
printer.Println("😊 Proctor: An Automation Orchestrator v0.1.0", color.Reset)
printer.Println("😊 Proctor: A Developer Friendly Automation Orchestrator v0.2.0", color.Reset)
},
}
}
2 changes: 1 addition & 1 deletion cmd/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func TestVersionCmd(t *testing.T) {
mockPrinter := &io.MockPrinter{}
versionCmd := NewCmd(mockPrinter)

mockPrinter.On("Println", "😊 Proctor: An Automation Orchestrator v0.1.0", color.Reset).Once()
mockPrinter.On("Println", "😊 Proctor: A Developer Friendly Automation Orchestrator v0.2.0", color.Reset).Once()

versionCmd.Run(&cobra.Command{}, []string{})

Expand Down

0 comments on commit 7d8196a

Please sign in to comment.