Skip to content

Commit

Permalink
Release of Version 0.7 for Scala 3 and Breeze 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenjw committed Oct 7, 2021
1 parent d66ec83 commit f967ed3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ This library is simplest to use with [`sbt`](http://www.scala-sbt.org/). You sho

To use the pre-built binary, add the following lines to your `build.sbt`:
```scala
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.6"
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.7"
```
The current [stable release](ReleaseNotes.md) is "0.6". 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.
The current [stable release](ReleaseNotes.md) is "0.7". 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.

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:
```bash
Expand All @@ -23,7 +23,7 @@ If you just want to try out the library without setting up any kind of project,
```
$ sbt "-Dsbt.version=1.5.1"
> set scalaVersion := "3.0.1"
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.6"
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.7"
> console
scala> import scalaglm._
```
Expand All @@ -36,7 +36,7 @@ This library has a dependence on [Breeze](https://github.com/scalanlp/breeze), s
If you want to use the latest snapshot, add the following to your `build.sbt`:

```scala
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.7-SNAPSHOT"
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.8-SNAPSHOT"
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name := "scala-glm"
organization := "com.github.darrenjw"
version := "0.7-SNAPSHOT"
version := "0.7"

scalacOptions ++= Seq(
"-unchecked", "-deprecation", "-feature"
Expand Down
2 changes: 1 addition & 1 deletion examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scalacOptions ++= Seq(

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.9" % "test",
"com.github.darrenjw" %% "scala-glm" % "0.7-SNAPSHOT",
"com.github.darrenjw" %% "scala-glm" % "0.7",
("org.ddahl" %% "rscala" % "3.2.19").cross(CrossVersion.for3Use2_13)
)

Expand Down

0 comments on commit f967ed3

Please sign in to comment.