Update version to 9.0-SNAPSHOT, api version to 9

This commit is contained in:
Greg Schueler 2013-08-21 10:14:32 -07:00
parent bb82f1e10c
commit d662909719
2 changed files with 3 additions and 2 deletions

View file

@ -27,7 +27,7 @@
<!-- Project informations --> <!-- Project informations -->
<groupId>org.rundeck</groupId> <groupId>org.rundeck</groupId>
<artifactId>rundeck-api-java-client</artifactId> <artifactId>rundeck-api-java-client</artifactId>
<version>8.1-SNAPSHOT</version> <version>9.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>RunDeck API - Java Client</name> <name>RunDeck API - Java Client</name>
<description>Java client for the RunDeck REST API</description> <description>Java client for the RunDeck REST API</description>

View file

@ -100,6 +100,7 @@ public class RundeckClient implements Serializable {
V6(6), V6(6),
V7(7), V7(7),
V8(8), V8(8),
V9(9),
; ;
private int versionNumber; private int versionNumber;
@ -113,7 +114,7 @@ public class RundeckClient implements Serializable {
} }
} }
/** Version of the API supported */ /** Version of the API supported */
public static final transient int API_VERSION = Version.V8.getVersionNumber(); public static final transient int API_VERSION = Version.V9.getVersionNumber();
private static final String API = "/api/"; private static final String API = "/api/";