From 680b6b8a0d5caeeb3734f36d7f42898b91687cc2 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 23 Jun 2018 07:46:23 +0100 Subject: [PATCH] Make README version number neutral Avoid needing to keep the version on the master branch up-to-date when it only gets set on a release branch. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f103d6..5036111 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,12 @@ TypeAlias, Maybe and Result for Java net.kemitix mon - 0.6.0 + RELEASE ``` +The latest version should be shown above with the nexus and maven-central badges. + ## Usage ### TypeAlias @@ -43,7 +45,7 @@ class Goal extends TypeAlias { ``` ```java -class Example {} +class Example { Goal goal = Goal.of("goal"); void foo(final Goal goal) { System.out.println("The goal is " + goal.getValue());