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.RC2-SNAPSHOT </version >
9+  <version >0.20.0</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 @@ -95,19 +95,19 @@ public class Version implements Serializable {
9595 public  static  final  int  V_0_20_0_RC1_ID  = /*00*/ 200051 ;
9696 public  static  final  Version  V_0_20_0_RC1  = new  Version (V_0_20_0_RC1_ID , false );
9797
98-  public  static  final  int  V_0_20_0_RC2_ID  = /*00*/ 200052 ;
99-  public  static  final  Version  V_0_20_0_RC2  = new  Version (V_0_20_0_RC2_ID ,  true );
98+  public  static  final  int  V_0_20_0_ID  = /*00*/ 200099 ;
99+  public  static  final  Version  V_0_20_0  = new  Version (V_0_20_0_ID ,  false );
100100
101-  public  static  final  Version  CURRENT  = V_0_20_0_RC2 ;
101+  public  static  final  Version  CURRENT  = V_0_20_0 ;
102102
103103 public  static  Version  readVersion (StreamInput  in ) throws  IOException  {
104104 return  fromId (in .readVInt ());
105105 }
106106
107107 public  static  Version  fromId (int  id ) {
108108 switch  (id ) {
109-  case  V_0_20_0_RC2_ID :
110-  return  V_0_20_0_RC2 ;
109+  case  V_0_20_0_ID :
110+  return  V_0_20_0 ;
111111 case  V_0_20_0_RC1_ID :
112112 return  V_0_20_0_RC1 ;
113113
                                 You can’t perform that action at this time. 
               
                  
0 commit comments