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

Commit 2ea24d6

Browse files
committed
Release v1.0.1
1 parent bb46213 commit 2ea24d6

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

CHANGELOG.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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+
## [v1.0.1] - 2018-07-11
9+
10+
This version contains 12 contributions from 4 contributors. There are 11 files changed, 133 insertions, and 39 deletions.
11+
12+
### Fixed
13+
14+
- Use `dep ensure -vendor-only` for build repeatability ([#1491](https://github.com/pilosa/pilosa/pull/1491))
15+
- Make sure time range views are calculated correctly across months ([#1485](https://github.com/pilosa/pilosa/pull/1485))
16+
- Fix up error handling, add a configurable timeout to http handler closing ([#1486](https://github.com/pilosa/pilosa/pull/1486))
17+
- Add gossip Closer ([#1483](https://github.com/pilosa/pilosa/pull/1483))
18+
- Update docs references to WebUI naming (console) and installation ([#1493](https://github.com/pilosa/pilosa/pull/1493))
19+
820
## [v1.0.0] - 2018-07-09
921

1022
This version contains 218 contributions from 7 contributors. There are 184 files changed, 21,769 insertions, and 20,275 deletions.
@@ -55,7 +67,7 @@ This version contains 218 contributions from 7 contributors. There are 184 files
5567

5668
## [v0.10.0] - 2018-05-15
5769

58-
This version contains 93 contribution from 8 contributors. There are 93 files changed, 4,495 insertions, and 5,392 deletions.
70+
This version contains 93 contributions from 8 contributors. There are 93 files changed, 4,495 insertions, and 5,392 deletions.
5971

6072
### Added
6173

@@ -86,7 +98,7 @@ This version contains 93 contribution from 8 contributors. There are 93 files ch
8698

8799
## [v0.9.0] - 2018-05-04
88100

89-
This version contains 188 contribution from 12 contributors. There are 141 files changed, 17,832 insertions, and 7,503 deletions.
101+
This version contains 188 contributions from 12 contributors. There are 141 files changed, 17,832 insertions, and 7,503 deletions.
90102

91103
*Please see special [upgrading instructions](https://www.pilosa.com/docs/latest/administration/#version-0-9) for this release.*
92104

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: v1.0.0
45+
Version: v1.0.1
4646
Build Time: 2018-05-14T22:14:01+0000
4747
4848
Usage:
@@ -71,19 +71,19 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
7171
7272
1. Download the latest release:
7373
```
74-
curl -L -O https://github.com/pilosa/pilosa/releases/download/v1.0.0/pilosa-v1.0.0-darwin-amd64.tar.gz
74+
curl -L -O https://github.com/pilosa/pilosa/releases/download/v1.0.1/pilosa-v1.0.1-darwin-amd64.tar.gz
7575
```
7676
7777
Other releases can be downloaded from our Releases page on Github.
7878
7979
2. Extract the binary:
8080
```
81-
tar xfz pilosa-v1.0.0-darwin-amd64.tar.gz
81+
tar xfz pilosa-v1.0.1-darwin-amd64.tar.gz
8282
```
8383
8484
3. Move the binary into your PATH so you can run `pilosa` from any shell:
8585
```
86-
cp -i pilosa-v1.0.0-darwin-amd64/pilosa /usr/local/bin
86+
cp -i pilosa-v1.0.1-darwin-amd64/pilosa /usr/local/bin
8787
```
8888
8989
4. Make sure Pilosa is installed successfully:
@@ -100,7 +100,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
100100
backing up, and more. Complete documentation is available
101101
at https://www.pilosa.com/docs/.
102102
103-
Version: v1.0.0
103+
Version: v1.0.1
104104
Build Time: 2018-05-14T22:14:01+0000
105105
106106
Usage:
@@ -163,7 +163,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
163163
backing up, and more. Complete documentation is available
164164
at https://www.pilosa.com/docs/.
165165
166-
Version: v1.0.0
166+
Version: v1.0.1
167167
Build Time: 2018-05-14T22:14:01+0000
168168
169169
Usage:
@@ -222,19 +222,19 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
222222
223223
1. To install the latest version of Pilosa, download the latest release:
224224
```
225-
curl -L -O https://github.com/pilosa/pilosa/releases/download/v1.0.0/pilosa-v1.0.0-linux-amd64.tar.gz
225+
curl -L -O https://github.com/pilosa/pilosa/releases/download/v1.0.1/pilosa-v1.0.1-linux-amd64.tar.gz
226226
```
227227
228228
Note: This assumes you are using an `amd64` compatible architecture. Other releases can be downloaded from our Releases page on Github.
229229
230230
2. Extract the binary:
231231
```
232-
tar xfz pilosa-v1.0.0-linux-amd64.tar.gz
232+
tar xfz pilosa-v1.0.1-linux-amd64.tar.gz
233233
```
234234
235235
3. Move the binary into your PATH so you can run `pilosa` from any shell:
236236
```
237-
cp -i pilosa-v1.0.0-linux-amd64/pilosa /usr/local/bin
237+
cp -i pilosa-v1.0.1-linux-amd64/pilosa /usr/local/bin
238238
```
239239
240240
4. Make sure Pilosa is installed successfully:
@@ -251,7 +251,7 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
251251
backing up, and more. Complete documentation is available
252252
at https://www.pilosa.com/docs/.
253253
254-
Version: v1.0.0
254+
Version: v1.0.1
255255
Build Time: 2018-05-14T22:14:01+0000
256256
257257
Usage:
@@ -314,7 +314,7 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
314314
backing up, and more. Complete documentation is available
315315
at https://www.pilosa.com/docs/.
316316
317-
Version: v1.0.0
317+
Version: v1.0.1
318318
Build Time: 2018-05-14T22:14:01+0000
319319
320320
Usage:

0 commit comments

Comments
 (0)