Skip to content

Commit

Permalink
Releases zlibsvm 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rzo1 committed Jan 7, 2022
1 parent c5a24b0 commit 9666964
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>zlibsvm</artifactId>
<packaging>pom</packaging>
<version>2.0.7-SNAPSHOT</version>
<version>2.0.7</version>

<name>zlibsvm</name>
<description>A Java binding for the famous LIBSVM library</description>
Expand Down Expand Up @@ -78,7 +78,7 @@
<maven.compile.encoding>UTF-8</maven.compile.encoding>
<maven.compiler.target>${java.target}</maven.compiler.target>

<zlibsvm.version>2.0.7-SNAPSHOT</zlibsvm.version>
<zlibsvm.version>2.0.7</zlibsvm.version>
<libsvm.version>3.25</libsvm.version>
<!-- apache commons stuff -->
<commons.lang3.version>3.12.0</commons.lang3.version>
Expand Down
2 changes: 1 addition & 1 deletion zlibsvm-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>zlibsvm</artifactId>
<version>2.0.7-SNAPSHOT</version>
<version>2.0.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion zlibsvm-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>zlibsvm</artifactId>
<version>2.0.7-SNAPSHOT</version>
<version>2.0.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
21 changes: 20 additions & 1 deletion zlibsvm-core/src/test/java/tw/edu/ntu/csie/libsvm/svm_train.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*-
* ========================LICENSE_START=================================
* zlibsvm-core
* %%
* Copyright (C) 2014 - 2022 Heilbronn University - Medical Informatics
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================LICENSE_END==================================
*/
/*
Copyright (c) 2000-2017 Chih-Chung Chang and Chih-Jen Lin
All rights reserved.
Expand Down Expand Up @@ -331,4 +350,4 @@ private void read_problem() throws IOException {

fp.close();
}
}
}

0 comments on commit 9666964

Please sign in to comment.