From cbb2e1662a6ae738b933ca52e958859963562319 Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Mon, 1 Feb 2021 12:02:09 +0100 Subject: [PATCH 1/2] Drop accidental debug output --- netfx_loader/ClrLoader.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netfx_loader/ClrLoader.cs b/netfx_loader/ClrLoader.cs index ad10e18..2ba4e74 100644 --- a/netfx_loader/ClrLoader.cs +++ b/netfx_loader/ClrLoader.cs @@ -84,10 +84,14 @@ public static void CloseAppDomain(IntPtr domain) } } + #if DEBUG static void Print(string s) { Console.WriteLine(s); } + #else + static void Print(string s) {} + #endif } } From e512c7a645dc702ef82f8368d8b526009fd19ebd Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Mon, 1 Feb 2021 12:03:21 +0100 Subject: [PATCH 2/2] Bump version to v0.1.4 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f2cd914..4a867f9 100755 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def finalize_options(self): setup( name="clr_loader", - version="0.1.3", + version="0.1.4", description="Generic pure Python loader for .NET runtimes", author="Benedikt Reinartz", author_email="filmor@gmail.com",