Skip to content

Commit f967ed3

Browse files
committed
Release of Version 0.7 for Scala 3 and Breeze 2.0
1 parent d66ec83 commit f967ed3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ This library is simplest to use with [`sbt`](http://www.scala-sbt.org/). You sho
1010

1111
To use the pre-built binary, add the following lines to your `build.sbt`:
1212
```scala
13-
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.6"
13+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.7"
1414
```
15-
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.
15+
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.
1616

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

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

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name := "scala-glm"
44
organization := "com.github.darrenjw"
5-
version := "0.7-SNAPSHOT"
5+
version := "0.7"
66

77
scalacOptions ++= Seq(
88
"-unchecked", "-deprecation", "-feature"

examples/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ scalacOptions ++= Seq(
88

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

0 commit comments

Comments
 (0)