Skip to content

Commit

Permalink
v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
haifengl committed Oct 15, 2018
1 parent 081bccf commit 95cc094
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ You can use the libraries through Maven central repository by adding the followi
<dependency>
<groupId>com.github.haifengl</groupId>
<artifactId>smile-core</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
```

For NLP, use the artifactId smile-nlp.

For Scala API, please use
```
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "1.5.1"
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "1.5.2"
```

To enable machine optimized matrix computation, the users should add
Expand All @@ -40,7 +40,7 @@ the dependency of smile-netlib:
<dependency>
<groupId>com.github.haifengl</groupId>
<artifactId>smile-netlib</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
```
and also make their machine-optimized libblas3 (CBLAS) and liblapack3 (Fortran)
Expand Down Expand Up @@ -146,7 +146,7 @@ To use SmilePlot, add the following to dependencies
<dependency>
<groupId>com.github.haifengl</groupId>
<artifactId>smile-plot</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val commonSettings = Seq(
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.7.25" % "test",
libraryDependencies += "junit" % "junit" % "4.12" % "test",
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
scalaVersion := "2.12.4",
scalaVersion := "2.12.6",
scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-encoding", "utf8"),
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a")),
parallelExecution in Test := false,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.6
sbt.version=1.2.4
1 change: 0 additions & 1 deletion project/buildinfo.sbt

This file was deleted.

6 changes: 4 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
resolvers += Resolver.typesafeRepo("releases")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.10")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")

addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.4")
2 changes: 1 addition & 1 deletion shell/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ buildInfoOptions += BuildInfoOption.BuildTime

libraryDependencies += "org.scala-lang" % "scala-compiler" % "2.12.4"

libraryDependencies += "com.lihaoyi" % "ammonite" % "1.0.3" cross CrossVersion.full
libraryDependencies += "com.lihaoyi" % "ammonite" % "1.2.1" cross CrossVersion.full

libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.7.25"
8 changes: 4 additions & 4 deletions shell/src/universal/doc/faq-content.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ <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;1.5.1&lt;/version&gt;
&lt;version&gt;1.5.2&lt;/version&gt;
&lt;/dependency&gt;
</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" % "1.5.1"
libraryDependencies += "com.github.haifengl" % "smile-core" % "1.5.2"
</code></pre>

<p>For Scala API,</p>

<pre><code>
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "1.5.1"
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "1.5.2"
</code></pre>

<p>To enable machine optimised matrix computation, the users should add
Expand All @@ -56,7 +56,7 @@ <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-netlib&lt;/artifactId&gt;
&lt;version&gt;1.5.1&lt;/version&gt;
&lt;version&gt;1.5.2&lt;/version&gt;
&lt;/dependency&gt;
</code></pre>
<p>and also make their machine-optimised libblas3 (CBLAS) and liblapack3 (Fortran)
Expand Down
3 changes: 3 additions & 0 deletions shell/src/universal/doc/index-content.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
<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/v1.5.2">Smile 1.5.2 Released!</a>
<span class="small">(Oct 15, 2018)</span></li>

<li><a href="https://www.youtube.com/watch?v=aqT_0qFOBUI">Dex Machine Learning with SMILE ML</a>
<span class="small">(Mar 28, 2018, by Patrick Martin)</span></li>

Expand Down

0 comments on commit 95cc094

Please sign in to comment.