From 0d493cebb5fbf8df64c271986a3aff5d742f621d Mon Sep 17 00:00:00 2001 From: Kyle LaBarge Date: Mon, 16 Sep 2019 20:08:57 -0400 Subject: [PATCH] Bump version --- js/package.json | 2 +- js/qz-tray.js | 4 ++-- src/qz/common/Constants.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package.json b/js/package.json index b9dff1718..e07a5d1b8 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "qz-tray", - "version": "2.0.10", + "version": "2.0.11", "description": "Connects a web client to the QZ Tray software. Enables printing and device communication from javascript. ", "main": "qz-tray.js", "scripts": { diff --git a/js/qz-tray.js b/js/qz-tray.js index bdc3817d0..60aa91f6f 100644 --- a/js/qz-tray.js +++ b/js/qz-tray.js @@ -1,7 +1,7 @@ 'use strict'; /** - * @version 2.0.10; + * @version 2.0.11; * @overview QZ Tray Connector *

* Connects a web client to the QZ Tray software. @@ -28,7 +28,7 @@ var qz = (function() { ///// PRIVATE METHODS ///// var _qz = { - VERSION: "2.0.10", //must match @version above + VERSION: "2.0.11", //must match @version above DEBUG: false, log: { diff --git a/src/qz/common/Constants.java b/src/qz/common/Constants.java index a338e33ba..33c3bbf25 100644 --- a/src/qz/common/Constants.java +++ b/src/qz/common/Constants.java @@ -12,7 +12,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.0.10"); + public static final Version VERSION = Version.valueOf("2.0.11"); public static final Version JAVA_VERSION = SystemUtilities.getJavaVersion(); public static final String JAVA_VENDOR = System.getProperty("java.vendor");