admin: update version to next milestone v6.3.0

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
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 @@
 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 @@
 
 // Version CLI
 func (c *Config) Version() string {
-	return "6.2.0"
+	return "6.3.0"
 }
 
 // PrintHeader prints startup message in CLI mode