Bump to v0.6.1.
Some checks failed
Ssg Check, Publish, and Release / ci (push) Failing after 3m57s

This commit is contained in:
Jesse Brault 2025-11-08 16:32:03 -06:00
parent a29838ba17
commit c7b7ee8d2b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ plugins {
}
group 'com.jessebrault.ssg'
version '0.6.0-SNAPSHOT'
version '0.6.1'
repositories {
mavenCentral()

View File

@ -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]
)