Skip to content

Commit 83b3497

Browse files
committed
updates for the 0.4 release
1 parent c19dba4 commit 83b3497

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
## Installation/Getting started
66

7-
This library is simplest to use with [SBT](http://www.scala-sbt.org/). You should install SBT before attempting to use this library.
7+
This library is simplest to use with [`sbt`](http://www.scala-sbt.org/). You should install `sbt` before attempting to use this library.
88

99
To use the pre-built binary, add the following lines to your `build.sbt`:
1010
```scala
11-
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.3"
11+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.4"
1212
```
13-
The current [stable release](ReleaseNotes.md) is "0.3". Releases are cross-built for both Scala 2.11 and 2.12 and published to the [central repository](http://central.sonatype.org/).
13+
The current [stable release](ReleaseNotes.md) is "0.4". It is cross-built for both 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.
1414

1515
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:
1616
```bash
@@ -20,8 +20,8 @@ sbt new darrenjw/scala-glm.g8
2020
If you just want to try out the library without setting up any kind of project, you can do so with a session like:
2121
```
2222
$ sbt
23-
> set scalaVersion := "2.12.1"
24-
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.3"
23+
> set scalaVersion := "2.13.4"
24+
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.4"
2525
> console
2626
scala> import scalaglm._
2727
```
@@ -34,7 +34,7 @@ This library has a dependence on [Breeze](https://github.com/scalanlp/breeze), s
3434
If you want to use the latest snapshot, add the following to your `build.sbt`:
3535

3636
```scala
37-
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.4-SNAPSHOT"
37+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.5-SNAPSHOT"
3838
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
3939
```
4040

@@ -52,6 +52,6 @@ If building from source, running `sbt console` from this directory should give a
5252

5353
## Author
5454

55-
This library is Copyright (C) 2017 [Darren J Wilkinson](https://github.com/darrenjw), but released as open source software under an Apache 2.0 license.
55+
This library is Copyright (C) 2017-2020 [Darren J Wilkinson](https://github.com/darrenjw), but released as open source software under an Apache 2.0 license.
5656

5757

ReleaseNotes.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# scala-glm
22

3-
## Release notes
3+
### Release notes
44

5-
### 0.4
5+
6+
7+
## 0.4
68

79
* Updated library dependencies and cross-built for Scala 2.12 and 2.13
8-
*
10+
* First version supporting Scala 2.13
11+
* Dropped Scala 2.11 from cross-build. Version 0.3 is final Scala 2.11 release
912

10-
### 0.3
13+
## 0.3
1114

1215
* First official sonatype release, cross-built for Scala 2.11 and 2.12
1316
* PCA, including human-readable summaries and diagnostic plots
@@ -19,4 +22,11 @@
1922
* Example code
2023
* Tutorial documentation
2124

25+
## 0.2
26+
27+
* Early test release
28+
29+
## 0.1
30+
31+
* Initial test release
2232

build.sbt

+1-1
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.4-SNAPSHOT"
5+
version := "0.4"
66

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

example-scripts/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ scalacOptions ++= Seq(
88

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

examples/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ scalacOptions ++= Seq(
88

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

0 commit comments

Comments
 (0)