diff --git a/.circleci/config.yml b/.circleci/config.yml index cf2797b..cd1cc69 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.travis.yml b/.travis.yml index 67eecb8..5a78eec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: go go: - - "1.9" - "1.10" + - "1.11" - master sudo: required group: deprecated-2017Q2 diff --git a/CHANGELOG.md b/CHANGELOG.md index a442d92..d228205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 155c5c7..0ba2ee1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Go Client for Pilosa - + GoDoc @@ -16,7 +16,7 @@ See: [CHANGELOG](CHANGELOG.md) ## Requirements -* Go 1.9 and higher +* Go 1.10 and higher ## Install diff --git a/version.go b/version.go index 32583e3..ff5d85f 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package pilosa -const Version = "v1.1.0" +const Version = "v1.2.0"