@@ -27,8 +27,12 @@ public class Version implements Comparable<Version> {
2727 public final static Version V3_1_0 = new Version ("3.1.0" , 3 , 1 , 0 , null , true );
2828 public final static Version V3_1_1 = new Version ("3.1.1" , 3 , 1 , 1 , null , true );
2929 public final static Version V3_1_2 = new Version ("3.1.2" , 3 , 1 , 2 , null , true );
30+ public final static Version V3_1_3 = new Version ("3.1.3" , 3 , 1 , 3 , null , true );
31+ public final static Version V3_1_4 = new Version ("3.1.4" , 3 , 1 , 4 , null , true );
32+ public final static Version V3_1_5 = new Version ("3.1.5" , 3 , 1 , 5 , null , true );
33+ public final static Version V3_1_6 = new Version ("3.1.6" , 3 , 1 , 6 , null , true );
3034 private final static Map <String , Version > knownVersions =
31- Stream .of (V3_0_0 , V3_0_1 , V3_0_2 , V3_0_3 , V3_0_4 , V3_1_0 , V3_1_1 , V3_1_2 )
35+ Stream .of (V3_0_0 , V3_0_1 , V3_0_2 , V3_0_3 , V3_0_4 , V3_1_0 , V3_1_1 , V3_1_2 , V3_1_3 , V3_1_4 , V3_1_5 , V3_1_6 )
3236 .collect (toMap (Version ::toString , Function .identity ()));
3337
3438 private final String origString ;
0 commit comments