Compare commits

...

2 commits

Author SHA1 Message Date
Cody Soyland
0d4b79068f
Merge pull request #970 from codysoyland/release-v0.8.1
Release v0.8.1
2017-11-15 16:14:41 -06:00
Cody Soyland
a595d80fd4 Release v0.8.1 2017-11-15 16:03:40 -06:00
2 changed files with 15 additions and 6 deletions

View file

@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.8.1] - 2017-11-15
This version contains 2 contributions from 2 contributors. There are 4 files changed, 27 insertions, and 14 deletions.
### Fixed
- Fix CountOpenFiles() fatal crash ([#969](https://github.com/pilosa/pilosa/pull/969))
- Fix version check when local is greater than pilosa.com ([#968](https://github.com/pilosa/pilosa/pull/968))
## [0.8.0] - 2017-11-15 ## [0.8.0] - 2017-11-15
This version contains 31 contributions from 8 contributors. There are 84 files changed, 3,732 insertions, and 1,428 deletions. This version contains 31 contributions from 8 contributors. There are 84 files changed, 3,732 insertions, and 1,428 deletions.

View file

@ -74,19 +74,19 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
1. Download the latest release: 1. Download the latest release:
``` ```
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.0/pilosa-v0.8.0-darwin-amd64.tar.gz curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.1/pilosa-v0.8.1-darwin-amd64.tar.gz
``` ```
Other releases can be downloaded from our Releases page on Github. Other releases can be downloaded from our Releases page on Github.
2. Extract the binary: 2. Extract the binary:
``` ```
tar xfz pilosa-v0.8.0-darwin-amd64.tar.gz tar xfz pilosa-v0.8.1-darwin-amd64.tar.gz
``` ```
3. Move the binary into your PATH so you can run `pilosa` from any shell: 3. Move the binary into your PATH so you can run `pilosa` from any shell:
``` ```
cp -i pilosa-v0.8.0-darwin-amd64/pilosa /usr/local/bin cp -i pilosa-v0.8.1-darwin-amd64/pilosa /usr/local/bin
``` ```
4. Make sure Pilosa is installed successfully: 4. Make sure Pilosa is installed successfully:
@ -228,19 +228,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: 1. To install the latest version of Pilosa, download the latest release:
``` ```
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.0/pilosa-v0.8.0-linux-amd64.tar.gz curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.1/pilosa-v0.8.1-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. 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: 2. Extract the binary:
``` ```
tar xfz pilosa-v0.8.0-linux-amd64.tar.gz tar xfz pilosa-v0.8.1-linux-amd64.tar.gz
``` ```
3. Move the binary into your PATH so you can run `pilosa` from any shell: 3. Move the binary into your PATH so you can run `pilosa` from any shell:
``` ```
cp -i pilosa-v0.8.0-linux-amd64/pilosa /usr/local/bin cp -i pilosa-v0.8.1-linux-amd64/pilosa /usr/local/bin
``` ```
4. Make sure Pilosa is installed successfully: 4. Make sure Pilosa is installed successfully: