Skip to content

Commit

Permalink
add private/wip state change to version checker
Browse files Browse the repository at this point in the history
  • Loading branch information
cashlalala committed Sep 22, 2018
1 parent 139bf3e commit abf91e4
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,17 @@ public static enum Feature {
/**
* Gerrit CommentAdded always contains approval information, added in Gerrit 2.13.
*/
commentAlwaysApproval("CommentAdded always contains approval", "2.13");
commentAlwaysApproval("CommentAdded always contains approval", "2.13"),

/**
* WIPStateChanged events, added in Gerrit 2.15.
*/
wipStateChanged("WIPStateChanged events", "2.15"),

/**
* PrivateStateChanged events, added in Gerrit 2.15.
*/
privateStateChanged("privateStateChanged events", "2.15");

private final String displayName;
private final String version;
Expand Down

0 comments on commit abf91e4

Please sign in to comment.