File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/main/java/org/elasticsearch Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 66 <modelVersion >4.0.0</modelVersion >
77 <groupId >org.elasticsearch</groupId >
88 <artifactId >elasticsearch</artifactId >
9- <version >0.20.0.Beta1-SNAPSHOT </version >
9+ <version >0.20.0.RC1 </version >
1010 <packaging >jar</packaging >
1111 <description >ElasticSearch - Open Source, Distributed, RESTful Search Engine</description >
1212 <inceptionYear >2009</inceptionYear >
Original file line number Diff line number Diff line change @@ -86,19 +86,19 @@ public class Version implements Serializable {
8686 public static final int V_0_19_10_ID = /*00*/ 191099 ;
8787 public static final Version V_0_19_10 = new Version (V_0_19_10_ID , false );
8888
89- public static final int V_0_20_0_Beta1_ID = /*00*/ 200001 ;
90- public static final Version V_0_20_0_Beta1 = new Version (V_0_20_0_Beta1_ID , true );
89+ public static final int V_0_20_0_RC1_ID = /*00*/ 200051 ;
90+ public static final Version V_0_20_0_RC1 = new Version (V_0_20_0_RC1_ID , false );
9191
92- public static final Version CURRENT = V_0_20_0_Beta1 ;
92+ public static final Version CURRENT = V_0_20_0_RC1 ;
9393
9494 public static Version readVersion (StreamInput in ) throws IOException {
9595 return fromId (in .readVInt ());
9696 }
9797
9898 public static Version fromId (int id ) {
9999 switch (id ) {
100- case V_0_20_0_Beta1_ID :
101- return V_0_20_0_Beta1 ;
100+ case V_0_20_0_RC1_ID :
101+ return V_0_20_0_RC1 ;
102102
103103 case V_0_19_0_RC1_ID :
104104 return V_0_19_0_RC1 ;
You can’t perform that action at this time.
0 commit comments