You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current [stable release](ReleaseNotes.md) is "0.8". It is cross-built for Scala 3, Scala 2.12 and 2.13 and published to the [central repository](http://central.sonatype.org/). Version 0.3 was the final release for Scala 2.11.
18
+
The current [stable release](ReleaseNotes.md) is "0.9". It is cross-built for Scala 3, Scala 2.12 and 2.13 and published to the [central repository](http://central.sonatype.org/). Version 0.3 was the final release for Scala 2.11.
19
19
20
20
There is a [giter8](http://www.foundweekends.org/giter8/) template for `scala-glm`, so using recent versions of `sbt` you can create a minimal `scala-glm` project template with:
21
21
```bash
@@ -26,20 +26,20 @@ If you just want to try out the library without setting up any kind of project,
26
26
```
27
27
$ sbt "-Dsbt.version=1.10.1"
28
28
> set scalaVersion := "3.3.4"
29
-
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.8"
29
+
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.9"
30
30
> console
31
31
scala> import scalaglm.*
32
32
```
33
33
34
34
Alternatively, if you use [scala-cli](https://scala-cli.virtuslab.org/), just add
35
35
```scala
36
36
//>usingscala3.3.4
37
-
//>usingdepcom.github.darrenjw::scala-glm:0.8
37
+
//>usingdepcom.github.darrenjw::scala-glm:0.9
38
38
```
39
39
to the top of your script. A minimal but complete runnable example script for `scala-cli` is given below:
40
40
```scala
41
41
//>usingscala3.3.4
42
-
//>usingdepcom.github.darrenjw::scala-glm:0.8
42
+
//>usingdepcom.github.darrenjw::scala-glm:0.9
43
43
44
44
importscalaglm.Pca
45
45
importbreeze.linalg.*
@@ -60,7 +60,7 @@ This library has a dependence on [Breeze](https://github.com/scalanlp/breeze), s
60
60
If you want to use the latest snapshot, add the following to your `build.sbt`:
0 commit comments