Skip to content

Commit 7a72d5e

Browse files
committed
bump version numbers for 0.5 release
1 parent 132e800 commit 7a72d5e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ This library is simplest to use with [`sbt`](http://www.scala-sbt.org/). You sho
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.4"
11+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.5"
1212
```
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.
13+
The current [stable release](ReleaseNotes.md) is "0.5". 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
@@ -21,7 +21,7 @@ If you just want to try out the library without setting up any kind of project,
2121
```
2222
$ sbt
2323
> set scalaVersion := "2.13.4"
24-
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.4"
24+
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.5"
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.5-SNAPSHOT"
37+
libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.6-SNAPSHOT"
3838
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
3939
```
4040

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

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

0 commit comments

Comments
 (0)