From 54073af93353c590bdb0140d76b6f93bc18cc2e9 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 22 Oct 2019 00:28:53 +0100 Subject: [PATCH] Release 0.5.2 --- cli/src/main/groovy/com/muwire/cli/Cli.groovy | 2 +- cli/src/main/groovy/com/muwire/cli/CliDownloader.groovy | 2 +- core/src/main/groovy/com/muwire/core/Core.groovy | 2 +- gradle.properties | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/src/main/groovy/com/muwire/cli/Cli.groovy b/cli/src/main/groovy/com/muwire/cli/Cli.groovy index 2720b8cf..00f41417 100644 --- a/cli/src/main/groovy/com/muwire/cli/Cli.groovy +++ b/cli/src/main/groovy/com/muwire/cli/Cli.groovy @@ -35,7 +35,7 @@ class Cli { Core core try { - core = new Core(props, home, "0.5.1") + core = new Core(props, home, "0.5.2") } catch (Exception bad) { bad.printStackTrace(System.out) println "Failed to initialize core, exiting" diff --git a/cli/src/main/groovy/com/muwire/cli/CliDownloader.groovy b/cli/src/main/groovy/com/muwire/cli/CliDownloader.groovy index 02459fbc..2a0582a2 100644 --- a/cli/src/main/groovy/com/muwire/cli/CliDownloader.groovy +++ b/cli/src/main/groovy/com/muwire/cli/CliDownloader.groovy @@ -53,7 +53,7 @@ class CliDownloader { Core core try { - core = new Core(props, home, "0.5.1") + core = new Core(props, home, "0.5.2") } catch (Exception bad) { bad.printStackTrace(System.out) println "Failed to initialize core, exiting" diff --git a/core/src/main/groovy/com/muwire/core/Core.groovy b/core/src/main/groovy/com/muwire/core/Core.groovy index 2bda59c9..162b180a 100644 --- a/core/src/main/groovy/com/muwire/core/Core.groovy +++ b/core/src/main/groovy/com/muwire/core/Core.groovy @@ -375,7 +375,7 @@ public class Core { } } - Core core = new Core(props, home, "0.5.1") + Core core = new Core(props, home, "0.5.2") core.startServices() // ... at the end, sleep or execute script diff --git a/gradle.properties b/gradle.properties index 746b811e..f5da7eb1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group = com.muwire -version = 0.5.1 +version = 0.5.2 i2pVersion = 0.9.42 groovyVersion = 2.4.15 slf4jVersion = 1.7.25