Skip to content

Commit

Permalink
Prepare to release v6.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
douglaswth committed Jun 14, 2017
1 parent 58be562 commit c867271
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v6.4.0 / 2017-06-14
-------------------
* Build with Go 1.8 which fixes JSON output to prefer decimal notation rather than scientific notation which was messing
up some IDs (see [encoding/json](https://golang.org/doc/go1.8#encoding_json) in the Go 1.8 Release Notes).
* Add `httpclient.NewPB` constructor which will create an `HTTPClient` from a `ParamBlock` rather than using package
global variables which can be unsafe with multiple Goroutines.
* Use `context` instead of `golang.org/x/net/context`.
* Support refresh token in `~/.rsc` configuration file for the command line tool.

v6.3.0 / 2017-03-02
------------------
* Added ResourceGroup resource
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Master
[![Build Status](https://travis-ci.org/rightscale/rsc.svg?branch=master)](https://travis-ci.org/rightscale/rsc)

v6.3.0
[![Build Status](https://travis-ci.org/rightscale/rsc.svg?branch=v6.3.0)](https://travis-ci.org/rightscale/rsc)
v6.4.0
[![Build Status](https://travis-ci.org/rightscale/rsc.svg?branch=v6.4.0)](https://travis-ci.org/rightscale/rsc)

`rsc` provides both a command line tool and a go package for interacting with the RightScale APIs.
The currently supported APIs are the RightScale Cloud Management API 1.5 and 1.6 APIs, the
Expand Down Expand Up @@ -42,15 +42,15 @@ As an example the following downloads and runs the MacOS X version:
$ curl https://binaries.rightscale.com/rsbin/rsc/v6/rsc-darwin-amd64.tgz | tar -zxf - -O rsc/rsc > rsc
$ chmod +x ./rsc
$ ./rsc --version
rsc v6.2.0 - 2016-08-24 00:34:20 - 308f4fcbf12da4b94d6fd683c25dd86deb35237e
rsc v6.4.0 - 2016-08-24 00:34:20 - 308f4fcbf12da4b94d6fd683c25dd86deb35237e
```

#### Versioning

- To download the latest stable use the links with 'v6' in them.
- To download a specific version, replace the 'v6' by the exact version, such as 'v6.2.0'.
- To download a specific version, replace the 'v6' by the exact version, such as 'v6.4.0'.
- All versions with the same major number (e.g. 'v6') are intended to be "upward" compatible.
- The 'v6' links download a specific version, so `rsc --version` will print something like 'v6.2.0'
- The 'v6' links download a specific version, so `rsc --version` will print something like 'v6.4.0'
and not 'v6'.
- The latest dev version is 'master'.

Expand Down

0 comments on commit c867271

Please sign in to comment.