diff --git a/build.sbt b/build.sbt index 276f7ee29f..91c6e033d6 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ lazy val commonSettings = Seq( organization := "com.github.haifengl", organizationName := "Haifeng Li", organizationHomepage := Some(url("http://haifengl.github.io/")), - version := "3.0.1", + version := "3.0.2", Test / parallelExecution := false, autoAPIMappings := true, diff --git a/clojure/project.clj b/clojure/project.clj index 13877ef1de..cf183cc137 100644 --- a/clojure/project.clj +++ b/clojure/project.clj @@ -1,4 +1,4 @@ -(defproject org.clojars.haifengl/smile "3.0.1" +(defproject org.clojars.haifengl/smile "3.0.2" :description "Smile - Statistical Machine Intelligence and Learning Engine" :url "https://haifengl.github.io" :scm {:name "git" @@ -6,7 +6,7 @@ :license {:name "GNU General Public License, Version 3" :url "https://opensource.org/licenses/GPL-3.0"} :dependencies [[org.clojure/clojure "1.11.1"] - [com.github.haifengl/smile-core "3.0.1"]] + [com.github.haifengl/smile-core "3.0.2"]] :plugins [[lein-codox "0.10.8"]] :codox {:doc-files ["README.md"] :output-path "../doc/api/clojure"} diff --git a/kotlin/build.gradle.kts b/kotlin/build.gradle.kts index a303e07c40..db560b9181 100644 --- a/kotlin/build.gradle.kts +++ b/kotlin/build.gradle.kts @@ -9,13 +9,13 @@ tasks.withType { plugins { `maven-publish` - kotlin("jvm") version "1.8.10" + kotlin("jvm") version "1.8.22" id("org.jetbrains.dokka") version "1.5.31" signing } group = "com.github.haifengl" -version = "3.0.1" +version = "3.0.2" repositories { mavenCentral() @@ -24,8 +24,8 @@ repositories { dependencies { implementation(kotlin("stdlib")) - api("com.github.haifengl:smile-core:3.0.1") - api("com.github.haifengl:smile-nlp:3.0.1") + api("com.github.haifengl:smile-core:3.0.2") + api("com.github.haifengl:smile-nlp:3.0.2") } // Copy jar to shell lib diff --git a/mkl/build.sbt b/mkl/build.sbt index 827cb367be..1277de0292 100644 --- a/mkl/build.sbt +++ b/mkl/build.sbt @@ -6,6 +6,6 @@ libraryDependencies ++= { "org.bytedeco" % "mkl-platform" % version, "org.bytedeco" % "mkl-platform-redist" % version, "org.bytedeco" % "openblas" % "0.3.23-1.5.9" % "test" classifier "macosx-x86_64" classifier "windows-x86_64" classifier "linux-x86_64", - "org.bytedeco" % "arpack-ng" % "3.9.0-1.5.9" % "test" classifier "macosx-x86_64" classifier "windows-x86_64" classifier "linux-x86_64" + "org.bytedeco" % "arpack-ng" % "3.9.0-1.5.9" % "test" classifier "macosx-x86_64" classifier "windows-x86_64" classifier "linux-x86_64" classifier "" ) } diff --git a/web/faq.html b/web/faq.html index eac8360829..0c50fcdad2 100644 --- a/web/faq.html +++ b/web/faq.html @@ -27,24 +27,24 @@ <dependency> <groupId>com.github.haifengl</groupId> <artifactId>smile-core</artifactId> - <version>3.0.1</version> + <version>3.0.2</version> </dependency>

If you're using Gradle, add the following line into your build file's dependencies section:


-    implementation("com.github.haifengl:smile-core:3.0.1")
+    implementation("com.github.haifengl:smile-core:3.0.2")
     

If you're using SBT, add the following line into your build file:


-    libraryDependencies += "com.github.haifengl" % "smile-core" % "3.0.1"
+    libraryDependencies += "com.github.haifengl" % "smile-core" % "3.0.2"
     

For Scala API,


-    libraryDependencies += "com.github.haifengl" %% "smile-scala" % "3.0.1"
+    libraryDependencies += "com.github.haifengl" %% "smile-scala" % "3.0.2"
     

Some algorithms rely on BLAS and LAPACK (e.g. manifold learning, @@ -74,7 +74,7 @@

includes MKL binaries. With `smile-mkl` module in the class path, Smile will automatically switch to MKL.


-    libraryDependencies += "com.github.haifengl" % "smile-mkl" % "3.0.1"
+    libraryDependencies += "com.github.haifengl" % "smile-mkl" % "3.0.2"
     

Model serialization

diff --git a/web/index.html b/web/index.html index a988fa9998..287354de4f 100644 --- a/web/index.html +++ b/web/index.html @@ -6,15 +6,15 @@
Latest News