mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 15:21:02 +00:00
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
844eb62f97 | ||
|
|
2ea24d6eee | ||
|
|
bb462136ec |
2 changed files with 25 additions and 13 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
|
@ -5,6 +5,18 @@ 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/).
|
||||||
|
|
||||||
|
## [v1.0.1] - 2018-07-11
|
||||||
|
|
||||||
|
This version contains 12 contributions from 4 contributors. There are 11 files changed, 133 insertions, and 39 deletions.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Use `dep ensure -vendor-only` for build repeatability ([#1491](https://github.com/pilosa/pilosa/pull/1491))
|
||||||
|
- Make sure time range views are calculated correctly across months ([#1485](https://github.com/pilosa/pilosa/pull/1485))
|
||||||
|
- Fix up error handling, add a configurable timeout to http handler closing ([#1486](https://github.com/pilosa/pilosa/pull/1486))
|
||||||
|
- Add gossip Closer ([#1483](https://github.com/pilosa/pilosa/pull/1483))
|
||||||
|
- Update docs references to WebUI naming (console) and installation ([#1493](https://github.com/pilosa/pilosa/pull/1493))
|
||||||
|
|
||||||
## [v1.0.0] - 2018-07-09
|
## [v1.0.0] - 2018-07-09
|
||||||
|
|
||||||
This version contains 218 contributions from 7 contributors. There are 184 files changed, 21,769 insertions, and 20,275 deletions.
|
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
|
||||||
|
|
||||||
## [v0.10.0] - 2018-05-15
|
## [v0.10.0] - 2018-05-15
|
||||||
|
|
||||||
This version contains 93 contribution from 8 contributors. There are 93 files changed, 4,495 insertions, and 5,392 deletions.
|
This version contains 93 contributions from 8 contributors. There are 93 files changed, 4,495 insertions, and 5,392 deletions.
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
|
@ -86,7 +98,7 @@ This version contains 93 contribution from 8 contributors. There are 93 files ch
|
||||||
|
|
||||||
## [v0.9.0] - 2018-05-04
|
## [v0.9.0] - 2018-05-04
|
||||||
|
|
||||||
This version contains 188 contribution from 12 contributors. There are 141 files changed, 17,832 insertions, and 7,503 deletions.
|
This version contains 188 contributions from 12 contributors. There are 141 files changed, 17,832 insertions, and 7,503 deletions.
|
||||||
|
|
||||||
*Please see special [upgrading instructions](https://www.pilosa.com/docs/latest/administration/#version-0-9) for this release.*
|
*Please see special [upgrading instructions](https://www.pilosa.com/docs/latest/administration/#version-0-9) for this release.*
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
|
||||||
backing up, and more. Complete documentation is available
|
backing up, and more. Complete documentation is available
|
||||||
at https://www.pilosa.com/docs/.
|
at https://www.pilosa.com/docs/.
|
||||||
|
|
||||||
Version: v1.0.0
|
Version: v1.0.1
|
||||||
Build Time: 2018-05-14T22:14:01+0000
|
Build Time: 2018-05-14T22:14:01+0000
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
@ -71,19 +71,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/v1.0.0/pilosa-v1.0.0-darwin-amd64.tar.gz
|
curl -L -O https://github.com/pilosa/pilosa/releases/download/v1.0.1/pilosa-v1.0.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-v1.0.0-darwin-amd64.tar.gz
|
tar xfz pilosa-v1.0.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-v1.0.0-darwin-amd64/pilosa /usr/local/bin
|
cp -i pilosa-v1.0.1-darwin-amd64/pilosa /usr/local/bin
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Make sure Pilosa is installed successfully:
|
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/)
|
||||||
backing up, and more. Complete documentation is available
|
backing up, and more. Complete documentation is available
|
||||||
at https://www.pilosa.com/docs/.
|
at https://www.pilosa.com/docs/.
|
||||||
|
|
||||||
Version: v1.0.0
|
Version: v1.0.1
|
||||||
Build Time: 2018-05-14T22:14:01+0000
|
Build Time: 2018-05-14T22:14:01+0000
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
@ -163,7 +163,7 @@ There are four ways to install Pilosa on MacOS: Use [Homebrew](https://brew.sh/)
|
||||||
backing up, and more. Complete documentation is available
|
backing up, and more. Complete documentation is available
|
||||||
at https://www.pilosa.com/docs/.
|
at https://www.pilosa.com/docs/.
|
||||||
|
|
||||||
Version: v1.0.0
|
Version: v1.0.1
|
||||||
Build Time: 2018-05-14T22:14:01+0000
|
Build Time: 2018-05-14T22:14:01+0000
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
@ -222,19 +222,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/v1.0.0/pilosa-v1.0.0-linux-amd64.tar.gz
|
curl -L -O https://github.com/pilosa/pilosa/releases/download/v1.0.1/pilosa-v1.0.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-v1.0.0-linux-amd64.tar.gz
|
tar xfz pilosa-v1.0.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-v1.0.0-linux-amd64/pilosa /usr/local/bin
|
cp -i pilosa-v1.0.1-linux-amd64/pilosa /usr/local/bin
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Make sure Pilosa is installed successfully:
|
4. Make sure Pilosa is installed successfully:
|
||||||
|
|
@ -251,7 +251,7 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
|
||||||
backing up, and more. Complete documentation is available
|
backing up, and more. Complete documentation is available
|
||||||
at https://www.pilosa.com/docs/.
|
at https://www.pilosa.com/docs/.
|
||||||
|
|
||||||
Version: v1.0.0
|
Version: v1.0.1
|
||||||
Build Time: 2018-05-14T22:14:01+0000
|
Build Time: 2018-05-14T22:14:01+0000
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
@ -314,7 +314,7 @@ There are three ways to install Pilosa on Linux: download the binary (recommende
|
||||||
backing up, and more. Complete documentation is available
|
backing up, and more. Complete documentation is available
|
||||||
at https://www.pilosa.com/docs/.
|
at https://www.pilosa.com/docs/.
|
||||||
|
|
||||||
Version: v1.0.0
|
Version: v1.0.1
|
||||||
Build Time: 2018-05-14T22:14:01+0000
|
Build Time: 2018-05-14T22:14:01+0000
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue