This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack-cloudmonkey.git


The following commit(s) were added to refs/heads/main by this push:
     new 773fc17  admin: update version to next milestone v6.3.0
773fc17 is described below

commit 773fc17554550b9ea99b173ad8514fd0ec9b196d
Author: Rohit Yadav <[email protected]>
AuthorDate: Wed Oct 27 17:19:31 2021 +0530

    admin: update version to next milestone v6.3.0
    
    Signed-off-by: Rohit Yadav <[email protected]>
---
 CHANGES.md      | 7 +++++++
 Dockerfile      | 2 +-
 cmd/output.go   | 2 +-
 config/about.go | 2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/CHANGES.md b/CHANGES.md
index 8c3fca0..352e0e6 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,13 @@
 Apache CloudStack CloudMonkey Changelog
 ---------------------------------------
 
+Version 6.3.0
+=============
+This release includes:
+- Fixes handling of invalid timeout value
+- Fixes csv output
+- Add support for ARM64 Darwin/OSX build in Makefile
+
 Version 6.2.0
 =============
 This release includes:
diff --git a/Dockerfile b/Dockerfile
index fef9a8d..0bf4a60 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,7 +21,7 @@ MAINTAINER "Apache CloudStack" <[email protected]>
 LABEL Description="Apache CloudStack CloudMonkey; Go based CloudStack command 
line interface"
 LABEL Vendor="Apache.org"
 LABEL License=ApacheV2
-LABEL Version=6.2.0
+LABEL Version=6.3.0
 
 WORKDIR /work/
 RUN apt -y update && apt -y install git golang-go build-essential && \
diff --git a/cmd/output.go b/cmd/output.go
index 2593ca4..08004cf 100644
--- a/cmd/output.go
+++ b/cmd/output.go
@@ -18,8 +18,8 @@
 package cmd
 
 import (
-       "encoding/json"
        "encoding/csv"
+       "encoding/json"
        "fmt"
        "os"
        "reflect"
diff --git a/config/about.go b/config/about.go
index 7fff766..a8fd91c 100644
--- a/config/about.go
+++ b/config/about.go
@@ -26,7 +26,7 @@ func (c *Config) Name() string {
 
 // Version CLI
 func (c *Config) Version() string {
-       return "6.2.0"
+       return "6.3.0"
 }
 
 // PrintHeader prints startup message in CLI mode

Reply via email to