Skip to content

Commit

Permalink
Release version 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olivere committed Apr 10, 2019
1 parent 4224308 commit 60d62e5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" && ! $(which nc) ]] ; then sudo apt-get install -y netcat ; fi
- sudo sysctl -w vm.max_map_count=262144
# - docker run -d --rm -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" -e "bootstrap.memory_lock=true" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" docker.elastic.co/elasticsearch/elasticsearch:7.0.0-rc1 elasticsearch -Enetwork.host=_local_,_site_ -Enetwork.publish_host=_local_
# - docker run -d --rm -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" -e "bootstrap.memory_lock=true" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" docker.elastic.co/elasticsearch/elasticsearch:7.0.0 elasticsearch -Enetwork.host=_local_,_site_ -Enetwork.publish_host=_local_
- docker-compose pull
- docker-compose up -d
- go get -u github.com/google/go-cmp/cmp
Expand Down
1 change: 1 addition & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ your issue/question without further inquiry. Thank you.

### Which version of Elastic are you using?

[ ] elastic.v7 (for Elasticsearch 7.x)
[ ] elastic.v6 (for Elasticsearch 6.x)
[ ] elastic.v5 (for Elasticsearch 5.x)
[ ] elastic.v3 (for Elasticsearch 2.x)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ import "github.com/olivere/elastic/v7"

### Elastic 7.0

Elastic 7.0 targets Elasticsearch 7.x which [is currently at rc1](https://www.elastic.co/guide/en/elasticsearch/reference/7.0/release-notes-7.0.0-rc1.html).
Elastic 7.0 targets Elasticsearch 7.x which [was released on April 10th 2019](https://www.elastic.co/guide/en/elasticsearch/reference/7.0/release-notes-7.0.0.html).

As always with major version, there are a lot of [breaking changes](https://www.elastic.co/guide/en/elasticsearch/reference/7.0/release-notes-7.0.0-rc1.html#breaking-7.0.0-rc1).
As always with major version, there are a lot of [breaking changes](https://www.elastic.co/guide/en/elasticsearch/reference/7.0/release-notes-7.0.0.html#breaking-7.0.0).
We will use this as an opportunity to [clean up and refactor Elastic](https://github.com/olivere/elastic/blob/release-branch.v7/CHANGELOG-7.0.md),
as we already did in earlier (major) releases.

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.0.0-rc1
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.0.0
hostname: elasticsearch
environment:
- cluster.name=elasticsearch
Expand All @@ -27,7 +27,7 @@ services:
ports:
- 9200:9200
platinum:
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0-rc1
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
hostname: elasticsearch-platinum
environment:
- cluster.name=platinum
Expand Down
6 changes: 3 additions & 3 deletions ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ type PingResult struct {
Name string `json:"name"`
ClusterName string `json:"cluster_name"`
Version struct {
Number string `json:"number"` // e.g. "7.0.0-rc1"
Number string `json:"number"` // e.g. "7.0.0"
BuildFlavor string `json:"build_flavor"` // e.g. "oss" or "default"
BuildType string `json:"build_type"` // e.g. "docker"
BuildHash string `json:"build_hash"` // e.g. "486505d"
BuildDate string `json:"build_date"` // e.g. "2019-03-22T20:26:57.194601Z"
BuildHash string `json:"build_hash"` // e.g. "b7e28a7"
BuildDate string `json:"build_date"` // e.g. "2019-04-05T22:55:32.697037Z"
BuildSnapshot bool `json:"build_snapshot"` // e.g. false
LuceneVersion string `json:"lucene_version"` // e.g. "8.0.0"
MinimumWireCompatibilityVersion string `json:"minimum_wire_compatibility_version"` // e.g. "6.7.0"
Expand Down

0 comments on commit 60d62e5

Please sign in to comment.