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

Commit a112b2d

Browse files
authored
Merge pull request #1323 from codysoyland/release-v0.10.1
Release v0.10.1
2 parents a236f08 + 09f2770 commit a112b2d

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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+
## [v0.10.1] - 2018-05-22
9+
10+
This version contains 10 contribution from 4 contributors. There are 5 files changed, 222 insertions, and 54 deletions.
11+
12+
### Added
13+
14+
- Add Docker cluster/swarm tutorials ([#1296](https://github.com/pilosa/pilosa/pull/1296), [#1305](https://github.com/pilosa/pilosa/pull/1305))
15+
16+
### Fixed
17+
18+
- Use errors.Cause in handler so that we return correct status codes ([#1304](https://github.com/pilosa/pilosa/pull/1304), [#1309](https://github.com/pilosa/pilosa/pull/1309))
19+
- Close HTTP handler gracefully ([#1310](https://github.com/pilosa/pilosa/pull/1310))
20+
- Use lazy assignment for VERSION_ID so enterprise flag is set appropriately ([#1308](https://github.com/pilosa/pilosa/pull/1308))
21+
- Adjust cluster state tests so they aren't so dependent upon a sleep ([#1306](https://github.com/pilosa/pilosa/pull/1306))
22+
- Makefile enterprise build fixes ([#1301](https://github.com/pilosa/pilosa/pull/1301))
23+
- Re-add unintentionally removed check-clean ([#1295](https://github.com/pilosa/pilosa/pull/1295))
24+
- Fix syntax error and add i386 enterprise build ([#1293](https://github.com/pilosa/pilosa/pull/1293))
25+
826
## [v0.10.0] - 2018-05-15
927

1028
This version contains 93 contribution from 8 contributors. There are 93 files changed, 4,495 insertions, and 5,392 deletions.

docs/installation.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
4242
backing up, and more. Complete documentation is available
4343
at https://www.pilosa.com/docs/.
4444
45-
Version: v0.10.0-64-gf053d9a5
45+
Version: v0.10.1-64-gf053d9a5
4646
Build Time: 2018-05-14T22:14:01+0000
4747
4848
Usage:
@@ -74,19 +74,19 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
7474
7575
1. Download the latest release:
7676
```
77-
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.10.0/pilosa-v0.10.0-darwin-amd64.tar.gz
77+
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.10.1/pilosa-v0.10.1-darwin-amd64.tar.gz
7878
```
7979
8080
Other releases can be downloaded from our Releases page on Github.
8181
8282
2. Extract the binary:
8383
```
84-
tar xfz pilosa-v0.10.0-darwin-amd64.tar.gz
84+
tar xfz pilosa-v0.10.1-darwin-amd64.tar.gz
8585
```
8686
8787
3. Move the binary into your PATH so you can run `pilosa` from any shell:
8888
```
89-
cp -i pilosa-v0.10.0-darwin-amd64/pilosa /usr/local/bin
89+
cp -i pilosa-v0.10.1-darwin-amd64/pilosa /usr/local/bin
9090
```
9191
9292
4. Make sure Pilosa is installed successfully:
@@ -103,7 +103,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
103103
backing up, and more. Complete documentation is available
104104
at https://www.pilosa.com/docs/.
105105
106-
Version: v0.10.0-64-gf053d9a5
106+
Version: v0.10.1-64-gf053d9a5
107107
Build Time: 2018-05-14T22:14:01+0000
108108
109109
Usage:
@@ -170,7 +170,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
170170
backing up, and more. Complete documentation is available
171171
at https://www.pilosa.com/docs/.
172172
173-
Version: v0.10.0-64-gf053d9a5
173+
Version: v0.10.1-64-gf053d9a5
174174
Build Time: 2018-05-14T22:14:01+0000
175175
176176
Usage:
@@ -232,19 +232,19 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
232232
233233
1. To install the latest version of Pilosa, download the latest release:
234234
```
235-
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.10.0/pilosa-v0.10.0-linux-amd64.tar.gz
235+
curl -L -O https://github.com/pilosa/pilosa/releases/download/v0.10.1/pilosa-v0.10.1-linux-amd64.tar.gz
236236
```
237237
238238
Note: This assumes you are using an `amd64` compatible architecture. Other releases can be downloaded from our Releases page on Github.
239239
240240
2. Extract the binary:
241241
```
242-
tar xfz pilosa-v0.10.0-linux-amd64.tar.gz
242+
tar xfz pilosa-v0.10.1-linux-amd64.tar.gz
243243
```
244244
245245
3. Move the binary into your PATH so you can run `pilosa` from any shell:
246246
```
247-
cp -i pilosa-v0.10.0-linux-amd64/pilosa /usr/local/bin
247+
cp -i pilosa-v0.10.1-linux-amd64/pilosa /usr/local/bin
248248
```
249249
250250
4. Make sure Pilosa is installed successfully:
@@ -261,7 +261,7 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
261261
backing up, and more. Complete documentation is available
262262
at https://www.pilosa.com/docs/.
263263
264-
Version: v0.10.0-64-gf053d9a5
264+
Version: v0.10.1-64-gf053d9a5
265265
Build Time: 2018-05-14T22:14:01+0000
266266
267267
Usage:
@@ -328,7 +328,7 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
328328
backing up, and more. Complete documentation is available
329329
at https://www.pilosa.com/docs/.
330330
331-
Version: v0.10.0-64-gf053d9a5
331+
Version: v0.10.1-64-gf053d9a5
332332
Build Time: 2018-05-14T22:14:01+0000
333333
334334
Usage:

0 commit comments

Comments
 (0)