diff --git a/build.gradle b/build.gradle index b5f5001d..f07d5e03 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } group 'org.novah' -version '0.1.1' +version '0.1.2' repositories { mavenCentral() diff --git a/releases.md b/releases.md index fa5f5596..64693848 100644 --- a/releases.md +++ b/releases.md @@ -1,10 +1,10 @@ -# 0.1.1 - -First release - -# 0.1.2 (to be released) +# 0.1.2 - Fixed unification of records with empty labels - Fixed record type annotation spreading - Fixed bug in import parsing -- Fixed bug in auto derive Equals \ No newline at end of file +- Fixed bug in auto derive Equals + +# 0.1.1 + +First release \ No newline at end of file diff --git a/src/main/kotlin/novah/main/Main.kt b/src/main/kotlin/novah/main/Main.kt index e13c7997..b433726e 100644 --- a/src/main/kotlin/novah/main/Main.kt +++ b/src/main/kotlin/novah/main/Main.kt @@ -36,7 +36,7 @@ class MainCommand : CliktCommand(name = "novah", printHelpOnEmptyArgs = true, in } companion object { - private const val VERSION = "0.1.1" + private const val VERSION = "0.1.2" } }