Skip to content

Commit

Permalink
bump version to 3.1.7 & sync doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrichet committed Nov 23, 2022
1 parent b24fb12 commit 4dd682e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
Rsession provides an easy to use java class giving access to remote or local R sessions.
The back-end engine should be:

* "true" R (3.5, 3.6 (and 4.0 on Linux)), through Rserve (locally spawned automatically if necessary, fully compatible with legacy R),
* "true" R (3.5, 3.6 and 4.x), through Rserve (locally spawned automatically if necessary, fully compatible with legacy R),
* Renjin 3.5 (lower compatibility, but still very good),
* and R2js, which is on-the-fly R translation to math.js, with lower compatibility and hack-style coding, but full BSD licence.

Rsession differs from R2js, Rserve or Renjin as it is a higher level API, and it includes server side startup of Rserve. It is also easier to use as it provides a multi session R engine for all these wrappers.
Rsession differs from R2js, Rserve or Renjin as it is a higher level API, and it includes server side startup of Rserve. It is also easier to use as it provides a multi session R engine for all these wrappers, whatever OS.

JRI is another alternative, but it does not provide multi-sessions feature.

Expand Down Expand Up @@ -68,7 +68,7 @@ Use this maven dependency:
<dependency>
<groupId>com.github.yannrichet</groupId>
<artifactId>Rsession</artifactId>
<version>3.1.5</version>
<version>3.1.7</version>
</dependency>
...
</dependencies>
Expand Down Expand Up @@ -103,7 +103,7 @@ Rsession r = new RenjinSession(System.out,null);

### Using only Rserve backend: ###

Install R 3.5 or 3.6 from http://cran.r-project.org, then add `rsession.jar:Rserve*.jar:REngine*.jar` in your project classpath:
Install R 3.5+ or 4.x from http://cran.r-project.org, then add `rsession.jar:Rserve*.jar:REngine*.jar` in your project classpath:

* https://github.com/yannrichet/rsession/blob/master/dist/rsession.jar
* https://github.com/yannrichet/rsession/blob/master/lib/REngine-2.1.0.jar
Expand Down
Binary file removed dist/Rsession-3.1.2.jar
Binary file not shown.
Binary file removed dist/Rsession-3.1.3.jar
Binary file not shown.
Binary file modified dist/rsession.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>com.github.yannrichet</groupId>
<artifactId>Rsession</artifactId>
<version>3.1.6</version>
<version>3.1.7</version>
<packaging>jar</packaging>
<name>rsession</name>

Expand Down Expand Up @@ -253,7 +253,7 @@
<connection>scm:git:git@github.com:yannrichet/rsession.git</connection>
<developerConnection>scm:git:git@github.com:yannrichet/rsession.git</developerConnection>
<url>git@github.com:yannrichet/rsession.git</url>
<tag>Rsession-3.1.6</tag>
<tag>Rsession-3.1.7</tag>
</scm>

<reporting>
Expand Down

0 comments on commit 4dd682e

Please sign in to comment.