Skip to content

Commit a968646

Browse files
committed
release [0.90.9]
1 parent 94349e0 commit a968646

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/reference/index-modules/codec.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Type name: `bloom`
141141
[TIP]
142142
==================================================
143143
144-
coming[0.90.9]. It can sometime make sense to disable bloom filters. For
144+
added[0.90.9]. It can sometime make sense to disable bloom filters. For
145145
instance, if you are logging into an index per day, and you have thousands of
146146
indices, the bloom filters can take up a sizable amount of memory. For most
147147
queries you are only interested in recent indices, so you don't mind CRUD

docs/reference/indices/update-settings.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ settings API:
6161

6262
`index.codec.bloom.load`::
6363
Whether to load the bloom filter. Defaults to `true`.
64-
coming[0.90.9]. See <<bloom-postings>>.
64+
added[0.90.9]. See <<bloom-postings>>.
6565

6666
`index.fail_on_merge_failure`::
6767
Default to `true`.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>org.elasticsearch</groupId>
88
<artifactId>elasticsearch</artifactId>
9-
<version>0.90.9-SNAPSHOT</version>
9+
<version>0.90.9</version>
1010
<packaging>jar</packaging>
1111
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
1212
<inceptionYear>2009</inceptionYear>

src/main/java/org/elasticsearch/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public class Version implements Serializable {
139139
public static final int V_0_90_8_ID = /*00*/900899;
140140
public static final Version V_0_90_8 = new Version(V_0_90_8_ID, false, org.apache.lucene.util.Version.LUCENE_46);
141141
public static final int V_0_90_9_ID = /*00*/900999;
142-
public static final Version V_0_90_9 = new Version(V_0_90_9_ID, true, org.apache.lucene.util.Version.LUCENE_46);
142+
public static final Version V_0_90_9 = new Version(V_0_90_9_ID, false, org.apache.lucene.util.Version.LUCENE_46);
143143
public static final Version CURRENT = V_0_90_9;
144144

145145
static {

0 commit comments

Comments
 (0)