Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgecrw committed Jun 29, 2023
1 parent 0489369 commit 2cdc8ce
Show file tree
Hide file tree
Showing 3 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 @@ -13,7 +13,7 @@ plugins {

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

sourceCompatibility = 6
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/fazecast/jSerialComm/SerialPort.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* SerialPort.java
*
* Created on: Feb 25, 2012
* Last Updated on: Jun 27, 2023
* Last Updated on: Jun 29, 2023
* Author: Will Hedgecock
*
* Copyright (C) 2012-2023 Fazecast, Inc.
Expand Down Expand Up @@ -98,7 +98,7 @@ public class SerialPort

// Static initializer loads correct native library for this machine
static private final ReentrantLock lock = new ReentrantLock(true);
static private final String versionString = "2.10.0";
static private final String versionString = "2.10.1";
static private final String tmpdirAppIdProperty = "fazecast.jSerialComm.appid";
static private final List<Thread> shutdownHooks = new ArrayList<Thread>();
static private boolean isWindows = false, isAndroid = false;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/fazecast/jSerialComm/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* package-info.java
*
* Created on: Jun 08, 2022
* Last Updated on: Jun 20, 2023
* Last Updated on: Jun 29, 2023
* Author: Will Hedgecock
*
* Copyright (C) 2012-2023 Fazecast, Inc.
Expand All @@ -28,6 +28,6 @@
* Java serial communications library.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.10.0
* @version 2.10.1
*/
package com.fazecast.jSerialComm;

0 comments on commit 2cdc8ce

Please sign in to comment.