Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgecrw committed Apr 17, 2024
1 parent cb59248 commit 9039c5d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {

group = 'com.fazecast'
archivesBaseName = 'jSerialComm'
version = System.getenv("LIB_VERSION") ?: '2.10.5'
version = System.getenv("LIB_VERSION") ?: '2.11.0'
ext.moduleName = 'com.fazecast.jSerialComm'

sourceCompatibility = 6
Expand Down
2 changes: 1 addition & 1 deletion src/main/c/Posix/SerialPort_Posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jfieldID eventFlagsField;
char portsEnumerated = 0;
char classInitialized = 0;
pthread_mutex_t criticalSection;
const char nativeLibraryVersion[] = "2.10.5";
const char nativeLibraryVersion[] = "2.11.0";
serialPortVector serialPorts = { NULL, 0, 0 };

// JNI exception handler
Expand Down
2 changes: 1 addition & 1 deletion src/main/c/Windows/SerialPort_Windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ CancelIoExFunction CancelIoEx = NULL;
char portsEnumerated = 0;
char classInitialized = 0;
CRITICAL_SECTION criticalSection;
const char nativeLibraryVersion[] = "2.10.5";
const char nativeLibraryVersion[] = "2.11.0";
serialPortVector serialPorts = { NULL, 0, 0 };

// JNI exception handler
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/fazecast/jSerialComm/SerialPort.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public class SerialPort

// Static initializer loads correct native library for this machine
static private final ReentrantLock libraryLock = new ReentrantLock(true);
static private final String versionString = "2.10.5";
static private final String versionString = "2.11.0";
static private final String tmpdirAppIdProperty = "fazecast.jSerialComm.appid";
static private final List<Thread> shutdownHooks = new ArrayList<Thread>();
static private boolean cleanUpOnShutdown = false, allowOpenForEnumeration = false, isAndroidDelete = false;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/fazecast/jSerialComm/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
* Java serial communications library.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.10.5
* @version 2.11.0
*/
package com.fazecast.jSerialComm;

0 comments on commit 9039c5d

Please sign in to comment.