From 3ea160deef84b32622eea6d0d49d69e3fc8caf62 Mon Sep 17 00:00:00 2001 From: Tibor Bodecs Date: Tue, 22 Oct 2024 20:22:03 +0200 Subject: [PATCH] version bump --- README.md | 4 ++-- Sources/toucan-cli/Entrypoint.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b816aca0..226001ec 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,6 @@ make install which toucan ``` -NOTE: version 1.0.0-alpha.3 only supports macOS, Linux support is coming soon. - ## Available commands ### generate @@ -35,6 +33,8 @@ Watch the source folder to any changes, to automatically re-generate the site. toucan watch ./src ./docs --base-url http://localhost:3000/ ``` +NOTE: version 1.0.0-beta.1 watch command only supports macOS, Linux support is coming soon. + ### serve Serves a given folder using an optional port number. Your site will be available under `http://localhost:3000/`, if you run like this: diff --git a/Sources/toucan-cli/Entrypoint.swift b/Sources/toucan-cli/Entrypoint.swift index 7ab2c372..c9c2297b 100644 --- a/Sources/toucan-cli/Entrypoint.swift +++ b/Sources/toucan-cli/Entrypoint.swift @@ -14,7 +14,7 @@ struct Entrypoint: AsyncParsableCommand { discussion: """ A markdown-based Static Site Generator (SSG) written in Swift. """, - version: "1.0.0-alpha.3", + version: "1.0.0-beta.1", subcommands: [ Generate.self, Serve.self,