diff --git a/js/package.json b/js/package.json index 39ebc80a..59477c91 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "qz-tray", - "version": "2.2.4", + "version": "2.2.5-SNAPSHOT", "description": "Connects a web client to the QZ Tray software. Enables printing and device communication from javascript. ", "main": "qz-tray.js", "browser": { diff --git a/js/qz-tray.js b/js/qz-tray.js index 46633a1c..ba51b21d 100644 --- a/js/qz-tray.js +++ b/js/qz-tray.js @@ -1,7 +1,7 @@ 'use strict'; /** - * @version 2.2.4 + * @version 2.2.5-SNAPSHOT * @overview QZ Tray Connector * @license LGPL-2.1-only *

@@ -27,7 +27,7 @@ var qz = (function() { ///// PRIVATE METHODS ///// var _qz = { - VERSION: "2.2.4", //must match @version above + VERSION: "2.2.5-SNAPSHOT", //must match @version above DEBUG: false, log: { diff --git a/src/qz/common/Constants.java b/src/qz/common/Constants.java index dc02176b..02c302a8 100644 --- a/src/qz/common/Constants.java +++ b/src/qz/common/Constants.java @@ -14,7 +14,7 @@ public class Constants { public static final String HEXES = "0123456789ABCDEF"; public static final char[] HEXES_ARRAY = HEXES.toCharArray(); public static final int BYTE_BUFFER_SIZE = 8192; - public static final Version VERSION = Version.valueOf("2.2.4"); + public static final Version VERSION = Version.valueOf("2.2.5-SNAPSHOT"); public static final Version JAVA_VERSION = SystemUtilities.getJavaVersion(); public static final String JAVA_VENDOR = System.getProperty("java.vendor");