From 2ef63599bf849e0da657cad9c5601055a3e0a597 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 14 Sep 2017 23:35:57 +0200 Subject: [PATCH] Reverted change to use Version object. --- README.md | 2 +- src/com/esotericsoftware/minlog/Log.java | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ed9aea2..66de924 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Drop-in replacement for [minlog](https://github.com/EsotericSoftware/minlog). com.dorkbox MinLog-SLF4J - 1.11 + 1.12 ``` diff --git a/src/com/esotericsoftware/minlog/Log.java b/src/com/esotericsoftware/minlog/Log.java index c20dd86..a752b14 100644 --- a/src/com/esotericsoftware/minlog/Log.java +++ b/src/com/esotericsoftware/minlog/Log.java @@ -19,8 +19,6 @@ */ package com.esotericsoftware.minlog; -import dorkbox.util.Version; - /** * A low overhead, lightweight logging system. * @author Nathan Sweet @@ -61,8 +59,8 @@ public class Log { * Gets the version number. */ public static - Version getVersion() { - return new Version("1.11"); + String getVersion() { + return "1.12"; } /**