* Prerelease identifier, like "RC3" or "pre5" - is guaranteed to be the
* emtpy String on stable releases
*/
- public static final String PREREL_SUFFIX = "RC3";
+ public static final String PREREL_SUFFIX = "RC4";
/** Full version for human reading - code should use the constants above */
public static final String FULL = "PostGIS JDBC V" + MAJOR + "." + MINOR + "." + MICRO
public static void main(String[] args) {
System.out.println(FULL);
}
-
+
public static String getFullVersion() {
return FULL;
}
-}
\ No newline at end of file
+}