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'