Skip to content

Commit

Permalink
Release 0.9.2569
Browse files Browse the repository at this point in the history
  • Loading branch information
bddbot committed Jan 9, 2018
1 parent ef6cde2 commit a3a971d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# The short X.Y version.
version = '0.8'
# The full version, including alpha/beta/rc tags.
release = '0.8.2567'
release = '0.9.2569'

rst_epilog = '.. |VERSION| replace:: %s' % release

Expand Down
14 changes: 7 additions & 7 deletions source/library/project-setup.rst
Original file line number Diff line number Diff line change
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.8.2567</version>
<version>0.9.2569</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.8.2567`` in the project file to use the
You can use ``RELEASE`` instead of ``0.9.2569`` 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.8.2567";
compile "org.renjin:renjin-script-engine:0.9.2569";
}
See the `renjin-gradle-example`_ on GitHub for a complete example.
Expand All @@ -80,7 +80,7 @@ Renjin's Script Engine:
name := "renjin-test",
version := "1.0",
scalaVersion := "2.10.6",
libraryDependencies += "org.renjin" % "renjin-script-engine" % "0.8.2567"
libraryDependencies += "org.renjin" % "renjin-script-engine" % "0.9.2569"
)
See the `renjin-sbt-example`_ on GitHub for a complete example.
Expand All @@ -107,7 +107,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.8.2567-jar-with-dependencies.jar
renjin-script-engine-0.9.2569-jar-with-dependencies.jar

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

Expand All @@ -125,7 +125,7 @@ a specific ``module.xml`` file:
<module xmlns="urn:jboss:module:1.1" name="org.renjin">
<resources>
<resource-root path="renjin-script-engine-0.8.2567-jar-with-dependencies.jar"/>
<resource-root path="renjin-script-engine-0.9.2569-jar-with-dependencies.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down Expand Up @@ -156,7 +156,7 @@ to `spark-submit` or `dse spark-submit`.
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.8.2567</version>
<version>0.9.2569</version>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions source/package/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ package from Renjin's secure repository:

.. code-block:: R
install.packages("https://nexus.bedatadriven.com/content/groups/public/org/renjin/renjin-gnur-package/0.8.2567/renjin-gnur-package-0.8.2567.tar.gz", repos = NULL)
install.packages("https://nexus.bedatadriven.com/content/groups/public/org/renjin/renjin-gnur-package/0.9.2569/renjin-gnur-package-0.9.2569.tar.gz", repos = NULL)
Older versions of GNU R may not support secure (https) URLs on your platform, or may not
Expand All @@ -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.8.2567/renjin-gnur-package-0.8.2567.tar.gz", "renjin.tgz")
download.file("http://nexus-insecure.bedatadriven.com/content/groups/public/org/renjin/renjin-gnur-package/0.9.2569/renjin-gnur-package-0.9.2569.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
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ packages:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<renjin.version>0.8.2567</renjin.version>
<renjin.version>0.9.2569</renjin.version>
</properties>
<dependencies>
Expand Down

0 comments on commit a3a971d

Please sign in to comment.