Skip to content

Commit b43b9b4

Browse files
committed
version bumps for 0.9 release
1 parent db123a0 commit b43b9b4

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

README.md

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

1414
To use the pre-built binary, add the following lines to your `build.sbt`:
1515
```scala
16-
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.8"
16+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.9"
1717
```
18-
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.
1919

2020
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:
2121
```bash
@@ -26,20 +26,20 @@ If you just want to try out the library without setting up any kind of project,
2626
```
2727
$ sbt "-Dsbt.version=1.10.1"
2828
> 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"
3030
> console
3131
scala> import scalaglm.*
3232
```
3333

3434
Alternatively, if you use [scala-cli](https://scala-cli.virtuslab.org/), just add
3535
```scala
3636
//> using scala 3.3.4
37-
//> using dep com.github.darrenjw::scala-glm:0.8
37+
//> using dep com.github.darrenjw::scala-glm:0.9
3838
```
3939
to the top of your script. A minimal but complete runnable example script for `scala-cli` is given below:
4040
```scala
4141
//> using scala 3.3.4
42-
//> using dep com.github.darrenjw::scala-glm:0.8
42+
//> using dep com.github.darrenjw::scala-glm:0.9
4343

4444
import scalaglm.Pca
4545
import breeze.linalg.*
@@ -60,7 +60,7 @@ This library has a dependence on [Breeze](https://github.com/scalanlp/breeze), s
6060
If you want to use the latest snapshot, add the following to your `build.sbt`:
6161

6262
```scala
63-
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.9-SNAPSHOT"
63+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "1.0-SNAPSHOT"
6464
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
6565
```
6666

ReleaseNotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### Release notes
44

5+
## 0.9
6+
7+
* Relatively minor bugfixes and library version updates
8+
59
## 0.8
610

711
* Linking against Breeze 2.1.0 (better for Scala 3 projects)

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.9-SNAPSHOT"
5+
version := "0.9"
66

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

examples/build.sbt

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

1111
libraryDependencies ++= Seq(
1212
"org.scalatest" %% "scalatest" % "3.2.14" % "test",
13-
"com.github.darrenjw" %% "scala-glm" % "0.9-SNAPSHOT",
13+
"com.github.darrenjw" %% "scala-glm" % "0.9",
1414
("org.ddahl" %% "rscala" % "3.2.19").cross(CrossVersion.for3Use2_13)
1515
)
1616

0 commit comments

Comments
 (0)