Skip to content

Commit 0d0e6f7

Browse files
committed
2.9.0 Release
1 parent 9b8af99 commit 0d0e6f7

File tree

13 files changed

+6
-4
lines changed

13 files changed

+6
-4
lines changed

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.0)
2-
cmake_policy(SET CMP0048 NEW)
2+
cmake_policy(SET CMP0048 OLD)
33
cmake_policy(SET CMP0042 NEW)
44

5-
project(jssc VERSION 2.7.1 LANGUAGES CXX)
5+
project(jssc CXX)
66

77
find_package(Java)
88
find_package(JNI)
@@ -47,6 +47,8 @@ endif()
4747

4848
if(WIN32)
4949
set(JSSC_PLATFORM "windows")
50+
# Don't append "lib" to windows binaries
51+
set(CMAKE_SHARED_LIBRARY_PREFIX "")
5052
# Disable optimization for Release builds (XP/Server 2003)
5153
if(NOT MSVC)
5254
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O0")

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.java-native.jssc</groupId>
88
<artifactId>jssc</artifactId>
9-
<version>3.0.0-SNAPSHOT</version>
9+
<version>2.9.0</version>
1010

1111
<properties>
1212
<java.version>1.6</java.version>

src/java/jssc/SerialNativeInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*/
3535
public class SerialNativeInterface {
3636

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

4040
public static final int OS_LINUX = 0;
0 Bytes
Binary file not shown.
-8.38 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-22.9 KB
Binary file not shown.
-22.3 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-57.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)