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.90.0.Beta2-SNAPSHOT </version >
9+ <version >0.90.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 @@ -112,19 +112,19 @@ public class Version implements Serializable {
112112 public static final int V_0_90_0_Beta1_ID = /*00*/ 900001 ;
113113 public static final Version V_0_90_0_Beta1 = new Version (V_0_90_0_Beta1_ID , false );
114114
115- public static final int V_0_90_0_Beta2_ID = /*00*/ 900002 ;
116- public static final Version V_0_90_0_Beta2 = new Version (V_0_90_0_Beta2_ID , true );
115+ public static final int V_0_90_0_RC1_ID = /*00*/ 900051 ;
116+ public static final Version V_0_90_0_RC1 = new Version (V_0_90_0_RC1_ID , false );
117117
118- public static final Version CURRENT = V_0_90_0_Beta2 ;
118+ public static final Version CURRENT = V_0_90_0_RC1 ;
119119
120120 public static Version readVersion (StreamInput in ) throws IOException {
121121 return fromId (in .readVInt ());
122122 }
123123
124124 public static Version fromId (int id ) {
125125 switch (id ) {
126- case V_0_90_0_Beta2_ID :
127- return V_0_90_0_Beta2 ;
126+ case V_0_90_0_RC1_ID :
127+ return V_0_90_0_RC1 ;
128128 case V_0_90_0_Beta1_ID :
129129 return V_0_90_0_Beta1 ;
130130
You can’t perform that action at this time.
0 commit comments