Update version number

This commit is contained in:
Will Hedgecock 2022-02-21 12:51:59 -06:00
parent d86f261f6b
commit 7521dd18d2
12 changed files with 13 additions and 13 deletions

View File

@ -12,7 +12,7 @@ plugins {
group = 'com.fazecast'
archivesBaseName = 'jSerialComm'
version = '2.9.1'
version = '2.9.2'
ext.moduleName = 'com.fazecast.jSerialComm'
if (hasProperty('manualBuild'))

View File

@ -45,14 +45,14 @@ import java.util.List;
* This class provides native access to serial ports and devices without requiring external libraries or tools.
*
* @author Will Hedgecock <will.hedgecock@fazecast.com>
* @version 2.9.1
* @version 2.9.2
* @see java.io.InputStream
* @see java.io.OutputStream
*/
public final class SerialPort
{
// Static initializer loads correct native library for this machine
static private final String versionString = "2.9.1";
static private final String versionString = "2.9.2";
static private final String tmpdirAppIdProperty = "fazecast.jSerialComm.appid";
static private List<Thread> shutdownHooks = new ArrayList<Thread>();
static private volatile boolean isAndroid = false;

View File

@ -31,7 +31,7 @@ import java.util.EventListener;
* This interface must be implemented to enable simple event-based serial port I/O.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see java.util.EventListener
*/
public interface SerialPortDataListener extends EventListener

View File

@ -29,7 +29,7 @@ package com.fazecast.jSerialComm;
* This interface must be implemented to enable simple event-based serial port I/O with a custom Exception callback.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see com.fazecast.jSerialComm.SerialPortDataListener
* @see java.util.EventListener
*/

View File

@ -31,7 +31,7 @@ import java.util.EventObject;
* This class describes an asynchronous serial port event.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see java.util.EventObject
*/
public class SerialPortEvent extends EventObject

View File

@ -31,7 +31,7 @@ import java.io.IOException;
* This class describes a serial port IO exception.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see java.io.IOException
*/
public final class SerialPortIOException extends IOException

View File

@ -29,7 +29,7 @@ package com.fazecast.jSerialComm;
* This class describes a serial port invalid port exception.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see java.lang.RuntimeException
*/
public final class SerialPortInvalidPortException extends RuntimeException

View File

@ -31,7 +31,7 @@ package com.fazecast.jSerialComm;
* <i>Note</i>: Using this interface will negate any serial port read timeout settings since they make no sense in an asynchronous context.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see com.fazecast.jSerialComm.SerialPortDataListener
* @see java.util.EventListener
*/

View File

@ -31,7 +31,7 @@ package com.fazecast.jSerialComm;
* <i>Note</i>: Using this interface will negate any serial port read timeout settings since they make no sense in an asynchronous context.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see com.fazecast.jSerialComm.SerialPortMessageListener
* @see com.fazecast.jSerialComm.SerialPortDataListener
* @see java.util.EventListener

View File

@ -31,7 +31,7 @@ package com.fazecast.jSerialComm;
* <i>Note</i>: Using this interface will negate any serial port read timeout settings since they make no sense in an asynchronous context.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see com.fazecast.jSerialComm.SerialPortDataListener
* @see java.util.EventListener
*/

View File

@ -31,7 +31,7 @@ import java.io.InterruptedIOException;
* This class describes a serial port timeout exception.
*
* @author Will Hedgecock &lt;will.hedgecock@fazecast.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see java.io.InterruptedIOException
*/
public final class SerialPortTimeoutException extends InterruptedIOException

View File

@ -32,7 +32,7 @@ import java.util.Scanner;
* This class provides a test case for the jSerialComm library.
*
* @author Will Hedgecock &lt;will.hedgecock@gmail.com&gt;
* @version 2.9.1
* @version 2.9.2
* @see java.io.InputStream
* @see java.io.OutputStream
*/