Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgecrw committed Nov 6, 2023
1 parent 6b792b5 commit 4da4af7
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.4'
version = System.getenv("LIB_VERSION") ?: '2.10.5'
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 @@ -84,7 +84,7 @@ jfieldID eventFlagsField;
char portsEnumerated = 0;
char classInitialized = 0;
pthread_mutex_t criticalSection;
const char nativeLibraryVersion[] = "2.10.4";
const char nativeLibraryVersion[] = "2.10.5";
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 @@ -88,7 +88,7 @@ CancelIoExFunction CancelIoEx = NULL;
char portsEnumerated = 0;
char classInitialized = 0;
CRITICAL_SECTION criticalSection;
const char nativeLibraryVersion[] = "2.10.4";
const char nativeLibraryVersion[] = "2.10.5";
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.4";
static private final String versionString = "2.10.5";
static private final String tmpdirAppIdProperty = "fazecast.jSerialComm.appid";
static private final List<Thread> shutdownHooks = new ArrayList<Thread>();
static private boolean isWindows = false, isAndroid = 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.4
* @version 2.10.5
*/
package com.fazecast.jSerialComm;

0 comments on commit 4da4af7

Please sign in to comment.