diff --git a/README.md b/README.md index 8631447..ec66323 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Maven Info com.dorkbox Console - 3.3 + 3.4 ``` diff --git a/src/dorkbox/console/Console.java b/src/dorkbox/console/Console.java index 3f1aea0..e8e500e 100644 --- a/src/dorkbox/console/Console.java +++ b/src/dorkbox/console/Console.java @@ -24,7 +24,6 @@ import dorkbox.console.input.Terminal; import dorkbox.console.output.Ansi; import dorkbox.console.output.AnsiOutputStream; import dorkbox.util.Property; -import dorkbox.util.Version; /** * Provides access to single character input streams and ANSI capable output streams. @@ -86,11 +85,10 @@ class Console { * Gets the version number. */ public static - Version getVersion() { - return new Version("3.3"); + String getVersion() { + return "3.4"; } - /** * Initializes output streams, necessary when using ANSI for the first time inside of an output stream (as it initializes after * assignment). This is not needed for input streams, since they do not hook System.err/out.