Skip to content

Commit 773fc17

Browse files
admin: update version to next milestone v6.3.0
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
1 parent 2176ff6 commit 773fc17

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Apache 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+
411
Version 6.2.0
512
=============
613
This release includes:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ MAINTAINER "Apache CloudStack" <dev@cloudstack.apache.org>
2121
LABEL Description="Apache CloudStack CloudMonkey; Go based CloudStack command line interface"
2222
LABEL Vendor="Apache.org"
2323
LABEL License=ApacheV2
24-
LABEL Version=6.2.0
24+
LABEL Version=6.3.0
2525

2626
WORKDIR /work/
2727
RUN apt -y update && apt -y install git golang-go build-essential && \

cmd/output.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
package cmd
1919

2020
import (
21-
"encoding/json"
2221
"encoding/csv"
22+
"encoding/json"
2323
"fmt"
2424
"os"
2525
"reflect"

config/about.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func (c *Config) Name() string {
2626

2727
// Version CLI
2828
func (c *Config) Version() string {
29-
return "6.2.0"
29+
return "6.3.0"
3030
}
3131

3232
// PrintHeader prints startup message in CLI mode

0 commit comments

Comments
 (0)