You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2017/06/05 18:31:49 UTC

[2/3] incubator-guacamole-client git commit: GUACAMOLE-314: Update extension API version sanity check to include the correct, recently-bumped version number.

GUACAMOLE-314: Update extension API version sanity check to include the correct, recently-bumped version number.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/6c0957e7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/6c0957e7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/6c0957e7

Branch: refs/heads/staging/0.9.13-incubating
Commit: 6c0957e7dedb47afe20b9ae2b5c5219c5cca3e75
Parents: 24708cf
Author: Michael Jumper <mj...@apache.org>
Authored: Sun Jun 4 13:18:57 2017 -0700
Committer: Michael Jumper <mj...@apache.org>
Committed: Sun Jun 4 13:18:57 2017 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/guacamole/extension/ExtensionModule.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/6c0957e7/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
----------------------------------------------------------------------
diff --git a/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java b/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
index 528f786..792066c 100644
--- a/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
+++ b/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
@@ -59,7 +59,7 @@ public class ExtensionModule extends ServletModule {
     private static final List<String> ALLOWED_GUACAMOLE_VERSIONS =
         Collections.unmodifiableList(Arrays.asList(
             "*",
-            "0.9.12-incubating"
+            "0.9.13-incubating"
         ));
 
     /**