Commit 7d8196a akshat
committed
1 parent 08ad34c commit 7d8196a Copy full SHA for 7d8196a
File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
- ## [ WIP: v0.2.0] - 2018-10-11
4
+ ## [ v0.2.0] - 2018-10-11
5
5
### Added
6
6
- Configurable kubernetes job retries (on failure)
7
+ - Meta fields for proc contributor details
7
8
### Modified
8
9
- Changelog format
9
10
- 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.
16
17
- Add Authentication Headers: Email-Id and Access-Token
17
18
- Add Job success and failure metrics
18
19
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
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ func NewCmd(printer io.Printer) *cobra.Command {
12
12
Short : "Print version of Proctor command-line tool" ,
13
13
Long : `Example: proctor version` ,
14
14
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 )
16
16
},
17
17
}
18
18
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ func TestVersionCmd(t *testing.T) {
20
20
mockPrinter := & io.MockPrinter {}
21
21
versionCmd := NewCmd (mockPrinter )
22
22
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 ()
24
24
25
25
versionCmd .Run (& cobra.Command {}, []string {})
26
26
You can’t perform that action at this time.
0 commit comments