Skip to content

Commit 5f51987

Browse files
committed
RC 1.6.5
1 parent c5897de commit 5f51987

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

R.NET/Properties/VersionInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// <auto-generated/>
22
using System.Reflection;
33

4-
[assembly: AssemblyVersionAttribute("1.6.4")]
5-
[assembly: AssemblyFileVersionAttribute("1.6.4")]
4+
[assembly: AssemblyVersionAttribute("1.6.5")]
5+
[assembly: AssemblyFileVersionAttribute("1.6.5")]

RDotNet.FSharp/VersionInfo.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace System
22
open System.Reflection
33

4-
[<assembly: AssemblyVersionAttribute("1.6.4")>]
5-
[<assembly: AssemblyFileVersionAttribute("1.6.4")>]
4+
[<assembly: AssemblyVersionAttribute("1.6.5")>]
5+
[<assembly: AssemblyFileVersionAttribute("1.6.5")>]
66
do ()
77

RDotNet.NativeLibrary/NativeUtility.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ public static string FindRPathFromRegistry(StringBuilder logger = null)
407407
CheckPlatformWin32();
408408
bool is64Bit = Environment.Is64BitProcess;
409409
RegistryKey rCoreKey = GetRCoreRegistryKeyWin32(logger);
410-
var installPath = GetRInstallPathFromRCoreKegKey(null, logger);
411-
var currentVersion = new Version((string)rCoreKey.GetValue("Current Version"));
410+
var installPath = GetRInstallPathFromRCoreKegKey(rCoreKey, logger);
411+
var currentVersion = GetRVersionFromRegistry();
412412
var bin = Path.Combine(installPath, "bin");
413413
// Up to 2.11.x, DLLs are installed in R_HOME\bin.
414414
// From 2.12.0, DLLs are installed in the one level deeper directory.

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 1.6.5 - Improve discovery of windows registry, to cater for situations arising from side by side installations of R
12
* 1.6.4 - Fixed github #17 (do not crash when R_Visible is not exported).
23
* 1.6.3 - Fixed github #14 (failing to parse things such as cat('this has # hash');). Known limitation: multi-line R character strings still not parsed correctly. Use Paket for dependency management. Use FAKE. Fix incorrect dependency for R.NET.Fsharp
34
* 1.6.2 - Fixed github #14 (failing to parse things such as cat('this has # hash');). Known limitation: multi-line R character strings still not parsed correctly. Use Paket for dependency management. Use FAKE.

0 commit comments

Comments
 (0)