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 #1107 from jaffee/release-v0.8.6
Browse files Browse the repository at this point in the history
update CHANGELOG, docs and Dockerfile for v0.8.6
  • Loading branch information
jaffee authored Feb 9, 2018
2 parents bd3c315 + 27ab03a commit 3257f34
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.8.6] - 2018-02-09

This version contains 2 contributions from 2 contributors. There are 3 files changed, 171 insertions, and 6 deletions.

### Fixed

- Fix overflow bug in differenceRunArray [#1106](https://github.com/pilosa/pilosa/pull/1106)
- Fix bug where count and bitmap queries could return different numbers [#1083](https://github.com/pilosa/pilosa/pull/1083)

## [0.8.5] - 2018-01-18

This version contains 1 contribution from 1 contributor. There is 1 file changed, 1 insertion, and 0 deletions.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.9.2 as builder
FROM golang:1.9.4 as builder

ARG ldflags=''

Expand Down
12 changes: 6 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,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.8.5/pilosa-v0.8.5-darwin-amd64.tar.gz
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.6/pilosa-v0.8.6-darwin-amd64.tar.gz
```
Other releases can be downloaded from our Releases page on Github.
2. Extract the binary:
```
tar xfz pilosa-v0.8.5-darwin-amd64.tar.gz
tar xfz pilosa-v0.8.6-darwin-amd64.tar.gz
```
3. Move the binary into your PATH so you can run `pilosa` from any shell:
```
cp -i pilosa-v0.8.5-darwin-amd64/pilosa /usr/local/bin
cp -i pilosa-v0.8.6-darwin-amd64/pilosa /usr/local/bin
```
4. Make sure Pilosa is installed successfully:
Expand Down Expand Up @@ -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:
```
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.5/pilosa-v0.8.5-linux-amd64.tar.gz
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.8.6/pilosa-v0.8.6-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.8.5-linux-amd64.tar.gz
tar xfz pilosa-v0.8.6-linux-amd64.tar.gz
```
3. Move the binary into your PATH so you can run `pilosa` from any shell:
```
cp -i pilosa-v0.8.5-linux-amd64/pilosa /usr/local/bin
cp -i pilosa-v0.8.6-linux-amd64/pilosa /usr/local/bin
```
4. Make sure Pilosa is installed successfully:
Expand Down

0 comments on commit 3257f34

Please sign in to comment.