Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed May 4, 2018
1 parent c66135f commit 732af82
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Now run Rings<i>.repl</i>:
``` scala
$ rings.repl
Loading...
Rings 2.3.2: efficient Java/Scala library for polynomial rings
Rings 2.4: 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 Down Expand Up @@ -76,7 +76,7 @@ $ rings.repl myRingsScript.sc
Rings is 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.3.2"
libraryDependencies += "cc.redberry" %% "rings.scaladsl" % "2.4"
```

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

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
# built documents.
#
# The short X.Y version.
version = '2.3'
version = '2.4'
# The full version, including alpha/beta/rc tags.
release = '2.3'
release = '2.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 3 additions & 4 deletions doc/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Now run |Rings|\ *.repl*:
$ rings.repl
Loading...
Rings 2.3: efficient Java/Scala library for polynomial rings
Rings 2.4: 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 @@ -64,7 +64,7 @@ Java/Scala library

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

Expand All @@ -73,7 +73,7 @@ For using |Rings| solely in Java there is Maven artifact:
<dependency>
<groupId>cc.redberry</groupId>
<artifactId>rings</artifactId>
<version>2.3</version>
<version>2.4</version>
</dependency>
Expand Down Expand Up @@ -664,7 +664,6 @@ Rational function arithmetic

Define a field of rational functions :math:`Frac(Z[x,y,z])` and input some functions:


.. tabs::

.. code-tab:: scala
Expand Down
2 changes: 1 addition & 1 deletion rings.repl/rings.repl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

ringsVersion=2.3.2
ringsVersion=2.4
ringsString="Rings ${ringsVersion}: efficient Java/Scala library for polynomial rings."

# CHECK JAVA VERSION
Expand Down

0 comments on commit 732af82

Please sign in to comment.