Skip to content

Commit

Permalink
v3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
haifengl committed Mar 8, 2024
1 parent f2b0991 commit 9508c20
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion base/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "smile-base"
packageOptions += Package.ManifestAttributes("Automatic-Module-Name" -> "smile.base")

libraryDependencies ++= {
val arrowV = "15.0.0"
val arrowV = "15.0.1"
Seq(
"org.bytedeco" % "javacpp" % "1.5.10" % "provided" classifier "macosx-x86_64" classifier "windows-x86_64" classifier "linux-x86_64",
"org.bytedeco" % "openblas" % "0.3.26-1.5.10" % "provided" classifier "macosx-x86_64" classifier "windows-x86_64" classifier "linux-x86_64",
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "smile"

lazy val scala213 = "2.13.12"
lazy val scala3 = "3.3.0"
lazy val scala213 = "2.13.13"
lazy val scala3 = "3.3.3"
lazy val supportedScalaVersions = List(scala213, scala3)

lazy val commonSettings = Seq(
Expand All @@ -13,7 +13,7 @@ lazy val commonSettings = Seq(
organization := "com.github.haifengl",
organizationName := "Haifeng Li",
organizationHomepage := Some(url("http://haifengl.github.io/")),
version := "3.0.2",
version := "3.0.3",

Test / parallelExecution := false,
autoAPIMappings := true,
Expand Down
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ while true; do
check_error "!!"
git merge master
check_error "!!"
sbt ++3.3.0 scala/publishSigned
sbt ++3.3.3 scala/publishSigned
check_error "!!"
sbt ++3.3.0 json/publishSigned
sbt ++3.3.3 json/publishSigned
check_error "!!"
# sbt ++3.3.0 spark/publishSigned
# sbt ++3.3.3 spark/publishSigned
# check_error "!!"

# git checkout master
Expand Down
6 changes: 3 additions & 3 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.2"
(defproject org.clojars.haifengl/smile "3.0.3"
: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.2"]]
:dependencies [[org.clojure/clojure "1.11.2"]
[com.github.haifengl/smile-core "3.0.3"]]
: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.22"
kotlin("jvm") version "1.9.23"
id("org.jetbrains.dokka") version "1.5.31"
signing
}

group = "com.github.haifengl"
version = "3.0.2"
version = "3.0.3"

repositories {
mavenCentral()
Expand All @@ -24,8 +24,8 @@ repositories {

dependencies {
implementation(kotlin("stdlib"))
api("com.github.haifengl:smile-core:3.0.2")
api("com.github.haifengl:smile-nlp:3.0.2")
api("com.github.haifengl:smile-core:3.0.3")
api("com.github.haifengl:smile-nlp:3.0.3")
}

// Copy jar to shell lib
Expand Down
2 changes: 1 addition & 1 deletion shell/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ buildInfoOptions += BuildInfoOption.BuildTime

libraryDependencies ++= Seq(
"com.github.scopt" %% "scopt" % "4.1.0",
"org.scala-lang" % "scala-compiler" % "2.13.12",
"org.scala-lang" % "scala-compiler" % "2.13.13",
"org.slf4j" % "slf4j-simple" % "2.0.12",
"com.typesafe.akka" %% "akka-actor-typed" % "2.8.5",
"com.typesafe.akka" %% "akka-stream" % "2.8.5",
Expand Down

0 comments on commit 9508c20

Please sign in to comment.