Skip to content

Commit 7d8196a

Browse files
author
akshat
committed
Release v0.2.0
1 parent 08ad34c commit 7d8196a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

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

19-
[WIP: v0.2.0]: https://github.com/gojektech/proctor/compare/v0.1.0...v0.2.0
20+
[v0.2.0]: https://github.com/gojektech/proctor/compare/v0.1.0...v0.2.0

cmd/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func NewCmd(printer io.Printer) *cobra.Command {
1212
Short: "Print version of Proctor command-line tool",
1313
Long: `Example: proctor version`,
1414
Run: func(cmd *cobra.Command, args []string) {
15-
printer.Println("😊 Proctor: An Automation Orchestrator v0.1.0", color.Reset)
15+
printer.Println("😊 Proctor: A Developer Friendly Automation Orchestrator v0.2.0", color.Reset)
1616
},
1717
}
1818
}

cmd/version/version_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestVersionCmd(t *testing.T) {
2020
mockPrinter := &io.MockPrinter{}
2121
versionCmd := NewCmd(mockPrinter)
2222

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

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

0 commit comments

Comments
 (0)