Skip to content

Commit

Permalink
Release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Abramov committed Aug 14, 2023
1 parent fc2ce72 commit 84a4db0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = 'io.github.samyssmile'
version = '1.0.3'
version = '1.0.4'

repositories {
mavenCentral()
Expand Down
9 changes: 4 additions & 5 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'io.github.samyssmile'
version = '1.0.3'
version = '1.0.4'

sourceCompatibility = '17'
targetCompatibility = '17'
Expand All @@ -15,18 +15,17 @@ repositories {
}

dependencies {
implementation 'com.opencsv:opencsv:5.7.1'
implementation 'com.opencsv:opencsv:5.8'
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.20.0'
api 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.google.guava:guava:31.1-jre'
}

testing {
suites {
test {
useJUnitJupiter('5.9.2')
useJUnitJupiter('5.10.0')
}
}
}
Expand All @@ -52,7 +51,7 @@ publishing {
mavenJava(MavenPublication) {
groupId = 'io.github.samyssmile'
artifactId = 'edux'
version = '1.0.3'
version = '1.0.4'
from components.java
artifact sourceJar
artifact javadocJar
Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/de/edux/ml/svm/SVMKernel.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package de.edux.ml.svm;

public enum SVMKernel {
LINEAR
LINEAR;
}

0 comments on commit 84a4db0

Please sign in to comment.