Skip to content

Commit 32a66ee

Browse files
committed
Bump version
1 parent ebdf17e commit 32a66ee

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qz-tray",
3-
"version": "2.2.4-SNAPSHOT",
3+
"version": "2.2.4",
44
"description": "Connects a web client to the QZ Tray software. Enables printing and device communication from javascript. ",
55
"main": "qz-tray.js",
66
"browser": {

js/qz-tray.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
/**
4-
* @version 2.2.4-SNAPSHOT
4+
* @version 2.2.4
55
* @overview QZ Tray Connector
66
* @license LGPL-2.1-only
77
* <p/>
@@ -27,7 +27,7 @@ var qz = (function() {
2727
///// PRIVATE METHODS /////
2828

2929
var _qz = {
30-
VERSION: "2.2.4-SNAPSHOT", //must match @version above
30+
VERSION: "2.2.4", //must match @version above
3131
DEBUG: false,
3232

3333
log: {

src/qz/common/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Constants {
1414
public static final String HEXES = "0123456789ABCDEF";
1515
public static final char[] HEXES_ARRAY = HEXES.toCharArray();
1616
public static final int BYTE_BUFFER_SIZE = 8192;
17-
public static final Version VERSION = Version.valueOf("2.2.4-SNAPSHOT");
17+
public static final Version VERSION = Version.valueOf("2.2.4");
1818
public static final Version JAVA_VERSION = SystemUtilities.getJavaVersion();
1919
public static final String JAVA_VENDOR = System.getProperty("java.vendor");
2020

0 commit comments

Comments
 (0)