Skip to content

Commit

Permalink
Release 0.9.2725
Browse files Browse the repository at this point in the history
  • Loading branch information
bddbot committed Mar 15, 2019
1 parent 1c67dfd commit b72881a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion source/conf.py
Expand Up @@ -52,7 +52,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '0.9.2724'
release = '0.9.2725'
version = release

rst_epilog = '.. |VERSION| replace:: %s' % release
Expand Down
14 changes: 7 additions & 7 deletions source/library/project-setup.rst
Expand Up @@ -22,7 +22,7 @@ Renjin's Script Engine as dependency to your project:
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.9.2724</version>
<version>0.9.2725</version>
</dependency>
</dependencies>
Expand All @@ -38,7 +38,7 @@ For this to work you will also need to add BeDataDriven's public repository to y
</repository>
</repositories>
You can use ``RELEASE`` instead of ``0.9.2724`` in the project file to use the
You can use ``RELEASE`` instead of ``0.9.2725`` in the project file to use the
very latest versions of the Renjin components.


Expand All @@ -54,7 +54,7 @@ For projects organized with Gradle, add the following to your ``build.gradle`` f
}
dependencies {
compile "org.renjin:renjin-script-engine:0.9.2724";
compile "org.renjin:renjin-script-engine:0.9.2725";
}
See the `renjin-gradle-example`_ on GitHub for a complete example.
Expand Down Expand Up @@ -85,7 +85,7 @@ Renjin's Script Engine:
name := "renjin-test",
version := "1.0",
scalaVersion := "2.10.6",
libraryDependencies += "org.renjin" % "renjin-script-engine" % "0.9.2724"
libraryDependencies += "org.renjin" % "renjin-script-engine" % "0.9.2725"
)
See the `renjin-sbt-example`_ on GitHub for a complete example.
Expand All @@ -112,7 +112,7 @@ through a point-and-click interface.
If this isn't possible for whatever reason, you can download
a single JAR file called:

renjin-script-engine-0.9.2724-jar-with-dependencies.jar
renjin-script-engine-0.9.2725-jar-with-dependencies.jar

from the Renjin website and manually add this as a dependency in Eclipse.

Expand All @@ -130,7 +130,7 @@ a specific ``module.xml`` file:
<module xmlns="urn:jboss:module:1.1" name="org.renjin">
<resources>
<resource-root path="renjin-script-engine-0.9.2724-jar-with-dependencies.jar"/>
<resource-root path="renjin-script-engine-0.9.2725-jar-with-dependencies.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down Expand Up @@ -161,7 +161,7 @@ to `spark-submit` or `dse spark-submit`.
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.9.2724</version>
<version>0.9.2725</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion source/package/index.rst
Expand Up @@ -38,7 +38,7 @@ support installing directly from URLs. In this case, you can run:

.. code-block:: R
download.file("http://nexus-insecure.bedatadriven.com/content/groups/public/org/renjin/renjin-gnur-package/0.9.2724/renjin-gnur-package-0.9.2724.tar.gz", "renjin.tgz")
download.file("http://nexus-insecure.bedatadriven.com/content/groups/public/org/renjin/renjin-gnur-package/0.9.2725/renjin-gnur-package-0.9.2725.tar.gz", "renjin.tgz")
install.packages("renjin.tgz", repos = NULL, type = "source")
Expand Down
2 changes: 1 addition & 1 deletion source/writing-renjin-extensions.rst
Expand Up @@ -102,7 +102,7 @@ packages:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<renjin.version>0.9.2724</renjin.version>
<renjin.version>0.9.2725</renjin.version>
</properties>
<dependencies>
Expand Down

0 comments on commit b72881a

Please sign in to comment.