Skip to content

Commit

Permalink
v2.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed Dec 13, 2019
1 parent 0afcf39 commit 568c9b4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ branches:
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
- image: circleci/openjdk:11-jdk

working_directory: ~/repo

Expand Down
8 changes: 4 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.5.2: efficient Java/Scala library for polynomial rings
Rings 2.5.6: 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.5.2"
libraryDependencies += "cc.redberry" %% "rings.scaladsl" % "2.5.6"
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.5.2</version>
<version>2.5.6</version>
</dependency>
Expand Down Expand Up @@ -1047,7 +1047,7 @@ Full benchmarks can be found at :ref:`ref-benchmarks` page. Benchmarks presented
- `Mathematica <http://www.wolfram.com/mathematica>`_ (version 11.1.1.0)
- `Singular <https://www.singular.uni-kl.de>`_ (version 4.1.0)
- `NTL <http://www.shoup.net/ntl/>`_ (version 10.4.0)
- `FLINT <http://www.flintlib.org>`_ (version 2.5.2_1)
- `FLINT <http://www.flintlib.org>`_ (version 2.5.6_1)


.. figure:: _static/gcd_z_5vars_rings_vs_singular.png
Expand Down
2 changes: 1 addition & 1 deletion rings.repl/rings.repl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ case $os in
;;
esac

ringsVersion=2.5.5
ringsVersion=2.5.6
ammArgs=()
javaArgs=()

Expand Down
4 changes: 2 additions & 2 deletions rings.scaladsl/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "cc.redberry"

name := "rings.scaladsl"

version := "2.5.5"
version := "2.5.6"

scalaVersion := "2.12.3"

Expand All @@ -15,7 +15,7 @@ moduleName := name.value
resolvers += Resolver.mavenLocal

libraryDependencies ++= Seq(
"cc.redberry" % "rings" % "2.5.5",
"cc.redberry" % "rings" % "2.5.6",
"junit" % "junit" % "4.12" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test exclude("junit", "junit-dep")
)
Expand Down
2 changes: 1 addition & 1 deletion rings/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>cc.redberry</groupId>
<artifactId>rings</artifactId>
<version>2.5.5</version>
<version>2.5.6</version>
<packaging>jar</packaging>
<name>rings</name>
<url>https://github.com/PoslavskySV/rings/</url>
Expand Down

0 comments on commit 568c9b4

Please sign in to comment.