Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
Updated changelog and bumped the version
Browse files Browse the repository at this point in the history
  • Loading branch information
yuce committed Dec 21, 2018
1 parent 80d46dd commit f28569c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ workflows:
- linter:
requires:
- build
- test-golang-1.10:
- test-golang-1.11:
requires:
- build
- test-golang-1.9:
- test-golang-1.10:
requires:
- build
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go
go:
- "1.9"
- "1.10"
- "1.11"
- master
sudo: required
group: deprecated-2017Q2
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Change Log

* **master**
* Added support for roaring imports which can speed up the import process by %30 for non-key column imports. This feature requires Pilosa on master branch.
* **v1.2.0** (2018-12-21)
* **Compatible with Pilosa 1.2**
* Added support for roaring imports which can speed up the import process by %30 for non-key column imports.
* Added mutex and bool fields.
* Added `field.ClearRow` call.
* Added `index.Options` call.
* Added support for roaring importing `RowIDColumnID` with timestamp data.
* Added experimental *no standard view* support for time fields. Use `OptFieldTypeTime(quantum, true)` to activate it. See https://github.com/pilosa/pilosa/issues/1710 for more information.
* Added `keys` and `trackExistence` to index options.
* Removed experimental import strategies.
* Removed support for Go 1.9.

* **v1.1.0** (2018-09-25)
* Compatible with Pilosa 1.1.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Go Client for Pilosa

<a href="https://github.com/pilosa"><img src="https://img.shields.io/badge/pilosa-1.1-blue.svg"></a>
<a href="https://github.com/pilosa"><img src="https://img.shields.io/badge/pilosa-1.2-blue.svg"></a>
<a href="https://godoc.org/github.com/pilosa/go-pilosa"><img src="https://godoc.org/github.com/pilosa/go-pilosa?status.svg" alt="GoDoc"></a>
<a href="https://travis-ci.org/pilosa/go-pilosa"><img src="https://api.travis-ci.org/pilosa/go-pilosa.svg?branch=master"></a>
<a href="https://goreportcard.com/report/github.com/pilosa/go-pilosa"><img src="https://goreportcard.com/badge/github.com/pilosa/go-pilosa?updated=1"></a>
Expand All @@ -16,7 +16,7 @@ See: [CHANGELOG](CHANGELOG.md)

## Requirements

* Go 1.9 and higher
* Go 1.10 and higher

## Install

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package pilosa

const Version = "v1.1.0"
const Version = "v1.2.0"

0 comments on commit f28569c

Please sign in to comment.