Skip to content

Commit

Permalink
v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
haifengl committed Jun 14, 2023
1 parent 1752e08 commit 74311a6
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions clojure/project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(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"
:url "https://github.com/haifengl/smile"}
: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"}
Expand Down
8 changes: 4 additions & 4 deletions kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ tasks.withType<KotlinCompile> {

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()
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mkl/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
)
}
10 changes: 5 additions & 5 deletions web/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@ <h2 class="question" id="link-with-smile">Link with Smile</h2>
&lt;dependency&gt;
&lt;groupId&gt;com.github.haifengl&lt;/groupId&gt;
&lt;artifactId&gt;smile-core&lt;/artifactId&gt;
&lt;version&gt;3.0.1&lt;/version&gt;
&lt;version&gt;3.0.2&lt;/version&gt;
&lt;/dependency&gt;
</code></pre>

<p>If you're using Gradle, add the following line into your build
file's <code>dependencies</code> section:</p>
<pre><code>
implementation("com.github.haifengl:smile-core:3.0.1")
implementation("com.github.haifengl:smile-core:3.0.2")
</code></pre>

<p>If you're using SBT, add the following line into your build file:</p>
<pre><code>
libraryDependencies += "com.github.haifengl" % "smile-core" % "3.0.1"
libraryDependencies += "com.github.haifengl" % "smile-core" % "3.0.2"
</code></pre>

<p>For Scala API,</p>
<pre><code>
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "3.0.1"
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "3.0.2"
</code></pre>

<p>Some algorithms rely on BLAS and LAPACK (e.g. manifold learning,
Expand Down Expand Up @@ -74,7 +74,7 @@ <h2 class="question" id="link-with-smile">Link with Smile</h2>
includes MKL binaries. With `smile-mkl` module in the class path, Smile
will automatically switch to MKL.</p>
<pre><code>
libraryDependencies += "com.github.haifengl" % "smile-mkl" % "3.0.1"
libraryDependencies += "com.github.haifengl" % "smile-mkl" % "3.0.2"
</code></pre>

<h2 class="question" id="model-serialization">Model serialization</h2>
Expand Down
6 changes: 3 additions & 3 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<div class="news" style="margin-bottom: 20px;">
<h5>Latest News</h5>
<ul class="list-unstyled">
<li><a href="https://github.com/haifengl/smile/releases/tag/v3.0.2">Smile 3.0.2 Released!</a>
<span class="small">(Jun 14, 2023)</span></li>

<li><a href="https://github.com/haifengl/smile/releases/tag/v3.0.1">Smile 3.0.1 Released!</a>
<span class="small">(Mar 3, 2023)</span></li>

<li><a href="https://github.com/haifengl/smile/releases/tag/v3.0.0">Smile 3.0.0 Released!</a>
<span class="small">(Dec 15, 2022)</span></li>

<li><a href="https://github.com/haifengl/smile/releases/tag/v2.6.0">Smile 2.6.0 Released!</a>
<span class="small">(Dec 5, 2020)</span></li>

<li><a href="https://sudonull.com/post/28015-ML-on-Scala-with-a-smile-for-those-who-are-not-afraid-of-experiments-Yulas-blog">ML on Scala with a Smile</a>
<span class="small">(May 22, 2019)</span></li>

Expand Down
2 changes: 1 addition & 1 deletion web/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ <h2 id="notebook">Notebooks</h2>
the <code>notebooks</code> directory.</p>

<pre class="prettyprint lang-scala"><code>
import $ivy.`com.github.haifengl::smile-scala:3.0.1`
import $ivy.`com.github.haifengl::smile-scala:3.0.2`

import scala.language.postfixOps
import org.apache.commons.csv.CSVFormat
Expand Down

0 comments on commit 74311a6

Please sign in to comment.