Skip to content

Commit

Permalink
2.0.1-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwh committed Nov 15, 2021
1 parent fc77871 commit 50dec75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Breeze is a library for numerical processing. It aims to be generic, clean, and

This is the 2.x branch. The 1.x branch is `1.x`.

The latest release is 2.0, which is cross-built against Scala 3.0, 2.12, and 2.13.
The latest release is 2.0.1-RC1, which is cross-built against Scala 3.0, 2.12, and 2.13.

## Documentation

Expand All @@ -27,11 +27,11 @@ For SBT, add these lines to your SBT project definition:
```scala
libraryDependencies ++= Seq(
// Last stable release
"org.scalanlp" %% "breeze" % "1.2",
"org.scalanlp" %% "breeze" % "2.0.1-RC1",

// The visualization library is distributed separately as well.
// It depends on LGPL code
"org.scalanlp" %% "breeze-viz" % "1.2"
"org.scalanlp" %% "breeze-viz" % "2.0.1-RC1"
)


Expand All @@ -48,12 +48,12 @@ Maven looks like this:
<dependency>
<groupId>org.scalanlp</groupId>
<artifactId>breeze_2.13</artifactId>
<version>1.2</version>
<version>2.0.1-RC1</version>
</dependency>
```

### Other build tools
[http://mvnrepository.com/artifact/org.scalanlp/breeze_2.12/1.2] (as an example) is a great resource for finding other configuration examples for other build tools.
[http://mvnrepository.com/artifact/org.scalanlp/breeze_2.12/2.0.1-RC1] (as an example) is a great resource for finding other configuration examples for other build tools.

See documentation (linked above!) for more information on using Breeze.

Expand Down
4 changes: 2 additions & 2 deletions version.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
git.baseVersion := "2.0"
git.baseVersion := "2.0.1-RC1"

// append -SNAPSHOT unless we're on a branch
//git.gitUncommittedChanges := git.gitCurrentTags.value.isEmpty
// git.useGitDescribe := true

val VersionRegex = "v([0-9]+.[0-9]+.[0-9]+)-?(.*)?".r

version in ThisBuild := "2.0"
version in ThisBuild := "2.0.1-RC1"

/*
git.gitTagToVersionNumber := {
Expand Down

0 comments on commit 50dec75

Please sign in to comment.