Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #761 from codysoyland/v0.6.0-release
Browse files Browse the repository at this point in the history
Release v0.6.0
  • Loading branch information
codysoyland authored Aug 11, 2017
2 parents 04de544 + 0fee386 commit cdb7d1f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,6 @@ curl -XGET localhost:10101/version

Response:
```
{"version":"v0.5.0"}
{"version":"v0.6.0"}
```

12 changes: 6 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit cdb7d1f

Please sign in to comment.