diff --git a/buildSrc/src/main/groovy/ssg-common.gradle b/buildSrc/src/main/groovy/ssg-common.gradle index 9554e23..992c986 100644 --- a/buildSrc/src/main/groovy/ssg-common.gradle +++ b/buildSrc/src/main/groovy/ssg-common.gradle @@ -4,7 +4,7 @@ plugins { } group 'com.jessebrault.ssg' -version '0.6.0-SNAPSHOT' +version '0.6.1' repositories { mavenCentral() diff --git a/cli/src/main/groovy/com/jessebrault/ssg/StaticSiteGeneratorCli.groovy b/cli/src/main/groovy/com/jessebrault/ssg/StaticSiteGeneratorCli.groovy index db2fa4a..59a8681 100644 --- a/cli/src/main/groovy/com/jessebrault/ssg/StaticSiteGeneratorCli.groovy +++ b/cli/src/main/groovy/com/jessebrault/ssg/StaticSiteGeneratorCli.groovy @@ -5,7 +5,7 @@ import picocli.CommandLine @CommandLine.Command( name = 'ssg', mixinStandardHelpOptions = true, - version = '0.6.0-SNAPSHOT', + version = '0.6.1', description = 'A static site generator which can interface with Gradle for high extensibility.', subcommands = [SsgInit, SsgBuild, SsgWatch] )