diff --git a/CHANGELOG.md b/CHANGELOG.md index 89e4fb61e..62ea2604e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.6.0] - 2017-08-11 + +This version contains 14 contributions from 5 contributors. There are 28 files changed, 4,936 insertions, and 692 deletions. + +### Added + +- Add Run-length Encoding ([#758](https://github.com/pilosa/pilosa/pull/758)) + +### Changed + +- Make gossip the default broadcast type ([#750](https://github.com/pilosa/pilosa/pull/750)) + +### Fixed + +- Fix CountRange ([#759](https://github.com/pilosa/pilosa/pull/759)) +- Fix `differenceArrayRun` logic ([#674](https://github.com/pilosa/pilosa/pull/674)) + ## [0.5.0] - 2017-08-02 This version contains 65 contributions from 8 contributors (including 1 volunteer contributor). There are 79 files changed, 7,972 insertions, and 2,800 deletions. diff --git a/docs/api-reference.md b/docs/api-reference.md index 0d7006c9a..0ee460562 100644 --- a/docs/api-reference.md +++ b/docs/api-reference.md @@ -368,6 +368,6 @@ curl -XGET localhost:10101/version Response: ``` -{"version":"v0.5.0"} +{"version":"v0.6.0"} ``` diff --git a/docs/installation.md b/docs/installation.md index f10cf0117..9936fb95c 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -69,19 +69,19 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/) 1. Download the latest release: ``` - curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.5.0/pilosa-v0.5.0-darwin-amd64.tar.gz + curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.6.0/pilosa-v0.6.0-darwin-amd64.tar.gz ``` Other releases can be downloaded from our Releases page on Github. 2. Extract the binary: ``` - tar xfz pilosa-v0.5.0-darwin-amd64.tar.gz + tar xfz pilosa-v0.6.0-darwin-amd64.tar.gz ``` 3. Move the binary into your PATH so you can run `pilosa` from any shell: ``` - cp -i pilosa-v0.5.0-darwin-amd64/pilosa /usr/local/bin + cp -i pilosa-v0.6.0-darwin-amd64/pilosa /usr/local/bin ``` 4. Make sure Pilosa is installed successfully: @@ -223,19 +223,19 @@ There are three ways to install Pilosa on Linux: download the binary (recommende 1. To install the latest version of Pilosa, download the latest release: ``` - curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.5.0/pilosa-v0.5.0-linux-amd64.tar.gz + curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.6.0/pilosa-v0.6.0-linux-amd64.tar.gz ``` Note: This assumes you are using an `amd64` compatible architecture. Other releases can be downloaded from our Releases page on Github. 2. Extract the binary: ``` - tar xfz pilosa-v0.5.0-linux-amd64.tar.gz + tar xfz pilosa-v0.6.0-linux-amd64.tar.gz ``` 3. Move the binary into your PATH so you can run `pilosa` from any shell: ``` - cp -i pilosa-v0.5.0-linux-amd64/pilosa /usr/local/bin + cp -i pilosa-v0.6.0-linux-amd64/pilosa /usr/local/bin ``` 4. Make sure Pilosa is installed successfully: