Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix VERSION constant
  • Loading branch information
chingor13 committed Jul 1, 2019
commit cd351a21c46311d07e406da7ad56eea052d17905
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public final class GoogleUtils {
*
* @since 1.14
*/
public static final Integer MINOR_VERSION = 26;
public static final Integer MINOR_VERSION = 27;

/**
* Bug fix part of the current release version.
*
* @since 1.14
*/
public static final Integer BUGFIX_VERSION = 0;
public static final Integer BUGFIX_VERSION = 1

/** Current release version. */
// NOTE: toString() so compiler thinks it isn't a constant, so it won't inline it
Expand Down