Skip to content

Commit

Permalink
Emergency release to sync binaries and source code
Browse files Browse the repository at this point in the history
  • Loading branch information
nyholku committed Jan 9, 2019
1 parent 5b01298 commit 98ae345
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.0.2

* Changed PureJavaSerialPort input stream to throw IOException if the port is closed from an other thread or otherwise

Version 1.0.1

* Fixed a missing timeout that caused hangs with in pollmode
Expand Down
Binary file modified bin/purejavacomm-src.jar
Binary file not shown.
Binary file modified bin/purejavacomm.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply from: 'deploy.gradle'

group "com.github.purejavacomm"
version "1.0.1.RELEASE"
version "1.0.3.RELEASE"

repositories {
mavenCentral()
Expand Down
5 changes: 3 additions & 2 deletions deploy.gradle
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ uploadArchives {
pom.project {
name 'PureJavaComm'
packaging 'jar'
// optionally artifactId can be defined here
description 'PureJavaComm is an Application Programmin Interface (API) for accessing serial ports from' +
groupId 'com.github.purejavacomm'
artifactId 'purejavacomm'
description 'PureJavaComm is an Application Programmin Interface (API) for accessing serial ports from' +
' Java. PureJavaComm aims to be a drop-in replacement for Sun\'s (now Oracle) abandoned' +
' JavaComm and an easier to deploy alternative to RXTX.'
url 'http://www.sparetimelabs.com/purejavacomm/purejavacomm.php'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.purejavacomm</groupId>
<artifactId>purejavacomm</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>

<name>PureJavaComm</name>
<url>http://www.sparetimelabs.com/purejavacomm/purejavacomm.php</url>
Expand Down
1 change: 0 additions & 1 deletion src/jtermios/JTermios.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ public class JTermios {
public static short POLLERR = 0x0008;
public static short POLLERR_OUT = 0x0008;
public static short POLLNVAL = 0x0020;
public static int POLLNVAL_OUT = 0x0020;

// misc stuff
public static int DC1 = 0x11; // Ctrl-Q;
Expand Down
2 changes: 1 addition & 1 deletion src/purejavacomm/PureJavaComm.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class PureJavaComm {
// change this if you modify the code and re-distribute
public static String getVersion() {
return "1.0.2";
return "1.0.3";
}

// change this is if you fork the project
Expand Down

0 comments on commit 98ae345

Please sign in to comment.