mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Release v0.6.0
This commit is contained in:
parent
04de5440e8
commit
0fee3860b0
3 changed files with 24 additions and 7 deletions
17
CHANGELOG.md
17
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.
|
||||
|
|
|
|||
|
|
@ -368,6 +368,6 @@ curl -XGET localhost:10101/version
|
|||
|
||||
Response:
|
||||
```
|
||||
{"version":"v0.5.0"}
|
||||
{"version":"v0.6.0"}
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue