File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11Apache CloudStack CloudMonkey Changelog
22---------------------------------------
33
4+ Version 6.3.0
5+ =============
6+ This release includes:
7+ - Fixes handling of invalid timeout value
8+ - Fixes csv output
9+ - Add support for ARM64 Darwin/OSX build in Makefile
10+
411Version 6.2.0
512=============
613This release includes:
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ MAINTAINER "Apache CloudStack" <dev@cloudstack.apache.org>
2121LABEL Description="Apache CloudStack CloudMonkey; Go based CloudStack command line interface"
2222LABEL Vendor="Apache.org"
2323LABEL License=ApacheV2
24- LABEL Version=6.2 .0
24+ LABEL Version=6.3 .0
2525
2626WORKDIR /work/
2727RUN apt -y update && apt -y install git golang-go build-essential && \
Original file line number Diff line number Diff line change 1818package cmd
1919
2020import (
21- "encoding/json"
2221 "encoding/csv"
22+ "encoding/json"
2323 "fmt"
2424 "os"
2525 "reflect"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ func (c *Config) Name() string {
2626
2727// Version CLI
2828func (c * Config ) Version () string {
29- return "6.2 .0"
29+ return "6.3 .0"
3030}
3131
3232// PrintHeader prints startup message in CLI mode
You can’t perform that action at this time.
0 commit comments