Skip to content

Commit

Permalink
Change to snapshot version
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Oct 26, 2023
1 parent 5ec959f commit 00779f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qz-tray",
"version": "2.2.3",
"version": "2.2.4-SNAPSHOT",
"description": "Connects a web client to the QZ Tray software. Enables printing and device communication from javascript. ",
"main": "qz-tray.js",
"browser": {
Expand Down
4 changes: 2 additions & 2 deletions js/qz-tray.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

/**
* @version 2.2.3
* @version 2.2.4-SNAPSHOT
* @overview QZ Tray Connector
* <p/>
* Connects a web client to the QZ Tray software.
Expand All @@ -26,7 +26,7 @@ var qz = (function() {
///// PRIVATE METHODS /////

var _qz = {
VERSION: "2.2.3", //must match @version above
VERSION: "2.2.4-SNAPSHOT", //must match @version above
DEBUG: false,

log: {
Expand Down
2 changes: 1 addition & 1 deletion src/qz/common/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.3");
public static final Version VERSION = Version.valueOf("2.2.4-SNAPSHOT");
public static final Version JAVA_VERSION = SystemUtilities.getJavaVersion();
public static final String JAVA_VENDOR = System.getProperty("java.vendor");

Expand Down

0 comments on commit 00779f0

Please sign in to comment.