From f001c282ac7c1d9f79f5c639a4eacdc2b555a9a6 Mon Sep 17 00:00:00 2001 From: Dylan Meissner Date: Fri, 8 Jul 2022 10:43:45 -0700 Subject: [PATCH] Update version (#7) --- README.md | 2 +- src/main/kotlin/zkr/Zkr.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aacf548..c2a024f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The `logs` command can replay transactions from Exhibitor transaction log and ba ### Commands ``` -ZooKeeper Reaper v0.4 - ZooKeeper backup/restore utility +ZooKeeper Reaper v0.5 - ZooKeeper backup/restore utility Usage: zkr [-hV] [COMMAND] -h, --help Show this help message and exit. -V, --version Print version information and exit. diff --git a/src/main/kotlin/zkr/Zkr.kt b/src/main/kotlin/zkr/Zkr.kt index e20274b..8df10ab 100644 --- a/src/main/kotlin/zkr/Zkr.kt +++ b/src/main/kotlin/zkr/Zkr.kt @@ -25,7 +25,7 @@ import kotlin.system.exitProcess class Zkr : Runnable { companion object { - const val VERSION = "0.4" + const val VERSION = "0.5" private val logger: Logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()) @JvmStatic