Skip to content

Commit

Permalink
Release 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed Nov 20, 2017
1 parent a5335dd commit 38bd792
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Now run Rings<i>.repl</i>:
``` scala
$ rings.repl
Loading...
Rings 2.0: efficient Java/Scala library for polynomial rings
Rings 2.1: efficient Java/Scala library for polynomial rings

@ implicit val ring = MultivariateRing(Z, Array("x", "y", "z"))
ring: MultivariateRing[IntZ] = MultivariateRing(Z, Array("x", "y", "z"), LEX)
Expand All @@ -65,7 +65,7 @@ res13: FactorDecomposition[MultivariatePolynomial[IntZ]] = 16*x*(-z+y)*(z^2-2*y*
Rings are currently available for Java and Scala. To get started with Scala SBT, simply add the following dependence to your `build.sbt` file:

``` scala
libraryDependencies += "cc.redberry" % "rings.scaladsl" % "2.0"
libraryDependencies += "cc.redberry" % "rings.scaladsl" % "2.1"
```

For using Rings solely in Java there is Maven artifact:
Expand All @@ -74,7 +74,7 @@ For using Rings solely in Java there is Maven artifact:
<dependency>
<groupId>cc.redberry</groupId>
<artifactId>rings</artifactId>
<version>2.0</version>
<version>2.1</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions doc/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Now run |Rings|\ *.repl*:
$ rings.repl
Loading...
Rings 2.0: efficient Java/Scala library for polynomial rings
Rings 2.1: efficient Java/Scala library for polynomial rings
@ implicit val ring = MultivariateRing(Z, Array("x", "y", "z"))
ring: MultivariateRing[IntZ] = MultivariateRing(Z, Array("x", "y", "z"), LEX)
Expand All @@ -59,7 +59,7 @@ Java/Scala library

.. code-block:: scala
libraryDependencies += "cc.redberry" % "rings.scaladsl" % "2.0"
libraryDependencies += "cc.redberry" % "rings.scaladsl" % "2.1"
For using |Rings| solely in Java there is Maven artifact:

Expand All @@ -68,7 +68,7 @@ For using |Rings| solely in Java there is Maven artifact:
<dependency>
<groupId>cc.redberry</groupId>
<artifactId>rings</artifactId>
<version>2.0</version>
<version>2.1</version>
</dependency>
Examples: algebra, GCDs, factorization
Expand Down

0 comments on commit 38bd792

Please sign in to comment.