Skip to content

Commit 0fee386

Browse files
committed
Release v0.6.0
1 parent 04de544 commit 0fee386

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.6.0] - 2017-08-11
9+
10+
This version contains 14 contributions from 5 contributors. There are 28 files changed, 4,936 insertions, and 692 deletions.
11+
12+
### Added
13+
14+
- Add Run-length Encoding ([#758](https://github.com/pilosa/pilosa/pull/758))
15+
16+
### Changed
17+
18+
- Make gossip the default broadcast type ([#750](https://github.com/pilosa/pilosa/pull/750))
19+
20+
### Fixed
21+
22+
- Fix CountRange ([#759](https://github.com/pilosa/pilosa/pull/759))
23+
- Fix `differenceArrayRun` logic ([#674](https://github.com/pilosa/pilosa/pull/674))
24+
825
## [0.5.0] - 2017-08-02
926

1027
This version contains 65 contributions from 8 contributors (including 1 volunteer contributor). There are 79 files changed, 7,972 insertions, and 2,800 deletions.

docs/api-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,6 @@ curl -XGET localhost:10101/version
368368

369369
Response:
370370
```
371-
{"version":"v0.5.0"}
371+
{"version":"v0.6.0"}
372372
```
373373

docs/installation.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,19 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
6969
7070
1. Download the latest release:
7171
```
72-
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.5.0/pilosa-v0.5.0-darwin-amd64.tar.gz
72+
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.6.0/pilosa-v0.6.0-darwin-amd64.tar.gz
7373
```
7474
7575
Other releases can be downloaded from our Releases page on Github.
7676
7777
2. Extract the binary:
7878
```
79-
tar xfz pilosa-v0.5.0-darwin-amd64.tar.gz
79+
tar xfz pilosa-v0.6.0-darwin-amd64.tar.gz
8080
```
8181
8282
3. Move the binary into your PATH so you can run `pilosa` from any shell:
8383
```
84-
cp -i pilosa-v0.5.0-darwin-amd64/pilosa /usr/local/bin
84+
cp -i pilosa-v0.6.0-darwin-amd64/pilosa /usr/local/bin
8585
```
8686
8787
4. Make sure Pilosa is installed successfully:
@@ -223,19 +223,19 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
223223
224224
1. To install the latest version of Pilosa, download the latest release:
225225
```
226-
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.5.0/pilosa-v0.5.0-linux-amd64.tar.gz
226+
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.6.0/pilosa-v0.6.0-linux-amd64.tar.gz
227227
```
228228
229229
Note: This assumes you are using an `amd64` compatible architecture. Other releases can be downloaded from our Releases page on Github.
230230
231231
2. Extract the binary:
232232
```
233-
tar xfz pilosa-v0.5.0-linux-amd64.tar.gz
233+
tar xfz pilosa-v0.6.0-linux-amd64.tar.gz
234234
```
235235
236236
3. Move the binary into your PATH so you can run `pilosa` from any shell:
237237
```
238-
cp -i pilosa-v0.5.0-linux-amd64/pilosa /usr/local/bin
238+
cp -i pilosa-v0.6.0-linux-amd64/pilosa /usr/local/bin
239239
```
240240
241241
4. Make sure Pilosa is installed successfully:

0 commit comments

Comments
 (0)