From b5e79db1b1c91b05dea8dabf412e1981b41ebff2 Mon Sep 17 00:00:00 2001 From: David Sargent Date: Tue, 5 Jun 2018 21:44:07 -0400 Subject: [PATCH] bump version info for v0.1.3 --- README.md | 5 +++++ build.gradle | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 319afc0..08d387c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,11 @@ Creates a set of Java source files containing the minimum amount of code to create a JAR with an identical public signature +## Release Notes +### v0.1.3 + - Added `throws` to generated method signatures that have orginally specified a method signature + - Methods that were originally varargs are now correctly generated as varargs + ## Passing Tests * Creates a compilable set of Java source files for GSON diff --git a/build.gradle b/build.gradle index 1ab0a4c..37c6634 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ group 'me.davidsargent' -version '0.1.2' +version '0.1.3' apply plugin: 'java' apply plugin: 'application'