Skip to content

Commit

Permalink
2.9.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 14, 2019
1 parent 9b8af99 commit 0d0e6f7
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.0)
cmake_policy(SET CMP0048 NEW)
cmake_policy(SET CMP0048 OLD)
cmake_policy(SET CMP0042 NEW)

project(jssc VERSION 2.7.1 LANGUAGES CXX)
project(jssc CXX)

find_package(Java)
find_package(JNI)
Expand Down Expand Up @@ -47,6 +47,8 @@ endif()

if(WIN32)
set(JSSC_PLATFORM "windows")
# Don't append "lib" to windows binaries
set(CMAKE_SHARED_LIBRARY_PREFIX "")
# Disable optimization for Release builds (XP/Server 2003)
if(NOT MSVC)
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O0")
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.java-native.jssc</groupId>
<artifactId>jssc</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>2.9.0</version>

<properties>
<java.version>1.6</java.version>
Expand Down
2 changes: 1 addition & 1 deletion src/java/jssc/SerialNativeInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
public class SerialNativeInterface {

private static final String libVersion = "2.8"; //jSSC-2.8.0 Release from 24.01.2014
private static final String libVersion = "2.9";
private static final String libMinorSuffix = "0"; //since 0.9.0

public static final int OS_LINUX = 0;
Expand Down
Binary file modified src/main/resources-precompiled/natives/linux_32/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/linux_64/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/linux_arm/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/linux_arm64/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/linux_ppc/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/osx_64/libjssc.dylib
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/sunos_32/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/sunos_64/libjssc.so
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/windows_32/jssc.dll
Binary file not shown.
Binary file modified src/main/resources-precompiled/natives/windows_64/jssc.dll
Binary file not shown.

0 comments on commit 0d0e6f7

Please sign in to comment.