diff --git a/docs/docs/getting-started/commands/index.html b/docs/docs/getting-started/commands/index.html
index 68fe57e..0ddd240 100644
--- a/docs/docs/getting-started/commands/index.html
+++ b/docs/docs/getting-started/commands/index.html
@@ -213,7 +213,7 @@
Getting started
Commands
Toucan includes three built-in subcommands to generate static sites: generate, watch, and serve.
Generate
The generate command builds static files from the source folder. The static site will be available in a destination directory, which can be customized. Additionally, the site’s base URL can be overridden, which is useful for local development.
The watch command monitors a source directory for changes and automatically rebuilds the distribution files, regenerating the site whenever changes are detected.
Please note that the watch command is only available on macOS during the alpha release.
The watch command monitors a source directory for changes and automatically rebuilds the distribution files, regenerating the site whenever changes are detected.
Please note that the watch command is only available on macOS during the beta release.
The serve command starts a web server to serve a specified directory. It allows serving a folder with an optional port number. By default, your site will be accessible at http://localhost:3000/ if run as follows:
You can specify a hostname and port parameter to bind your web server to a given address. This allows you to preview your website at http://localhost:3000/.
Welcome to the Toucan user docs. This page is currently work in progress. We’re going to provide the documentation for our static site during the upcoming weeks. Thank you very much for your patience. 🙏
Don’t hesitate to contact us if you have any questions.
Welcome to the Toucan user docs. This page is currently work in progress. We’re going to provide the documentation for our static site during the upcoming weeks. Thank you very much for your patience. 🙏
Don’t hesitate to contact us if you have any questions.
During the alpha release, Toucan can be installed on Linux by compiling from source.
Please note that the watch command is not fully supported yet, but this feature will be available on Linux in a future release.
Quick install
Here’s a quick snippet to install Toucan on Linux. Run the following commands, ensuring that Swift 5.10 or later is installed on your machine beforehand.
# clone the repository & install toucan
+
Linux
During the beta release, Toucan can be installed on Linux by compiling from source.
Please note that the watch command is not fully supported yet, but this feature will be available on Linux in a future release.
Quick install
Here’s a quick snippet to install Toucan on Linux. Run the following commands, ensuring that Swift 5.10 or later is installed on your machine beforehand.
# clone the repository & install toucan
git clone https://github.com/toucansites/toucan.git
cd toucan
make install
diff --git a/docs/docs/installation/macos/index.html b/docs/docs/installation/macos/index.html
index 24c0c8c..51165cd 100644
--- a/docs/docs/installation/macos/index.html
+++ b/docs/docs/installation/macos/index.html
@@ -212,7 +212,7 @@
Installation
-
macOS
During the alpha release, Toucan can be installed on macOS by compiling from source. Support for Brew and Mint package managers is coming soon.
Quick install
Here’s a quick snippet to install Toucan on macOS. Simply run the following commands. Please note that both Swift and Xcode must be installed on your machine before executing the commands.
# clone the repository & install toucan
+
macOS
During the beta release, Toucan can be installed on macOS by compiling from source. Support for Brew and Mint package managers is coming soon.
Quick install
Here’s a quick snippet to install Toucan on macOS. Simply run the following commands. Please note that both Swift and Xcode must be installed on your machine before executing the commands.
# clone the repository & install toucan
git clone https://github.com/toucansites/toucan.git
cd toucan
make install
diff --git a/docs/docs/installation/windows/index.html b/docs/docs/installation/windows/index.html
index 1f2e8e5..f4d6bef 100644
--- a/docs/docs/installation/windows/index.html
+++ b/docs/docs/installation/windows/index.html
@@ -212,7 +212,7 @@
Installation
-
Windows
Toucan is available for macOS and Linux during the alpha release, with Windows support coming soon.
If you’d like to help improve Toucan on Windows, consider submitting a PR to the project’s repository on GitHub. 🙏
+
Windows
Toucan is available for macOS and Linux during the beta release, with Windows support coming soon.
If you’d like to help improve Toucan on Windows, consider submitting a PR to the project’s repository on GitHub. 🙏
The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the alpha and beta release cycles.
Top-level templates
There are a few top level templates that most of the themes will include inside the themes/default/templates folder:
html.mustache
+
Toucan templates
The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the beta release cycle.
Top-level templates
There are a few top level templates that most of the themes will include inside the themes/default/templates folder:
Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.
+
+
+
+
+
+
+
Toucan is now ready for beta testing. During this phase, the focus will be on bug fixes and overall quality-of-life improvements.
A significant change from version 1.0.0-alpha.3 is the introduction of custom block directives. More details about this feature can be found in the corresponding documentation section.
Another new feature is the init command, which assists in bootstrapping the creation of a static website. Simply run toucan init to get started.
This is a great time to start building your own site with Toucan. The team is eager to see the projects created using our static site generator.
Check out the sample repositories for inspiration and start building your own site or theme with Toucan:
diff --git a/src/contents/blog/articles/first-beta-release/index.md b/src/contents/blog/articles/first-beta-release/index.md
new file mode 100644
index 0000000..bd625d2
--- /dev/null
+++ b/src/contents/blog/articles/first-beta-release/index.md
@@ -0,0 +1,35 @@
+---
+type: post
+title: "First beta release"
+description: "Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements."
+publication: "2024-10-22 00:00:00"
+tags:
+ - releases
+authors:
+ - tibor-bodecs
+featured: true
+---
+
+Toucan is now ready for [beta](https://github.com/toucansites/toucan/releases/tag/1.0.0-beta.1) testing. During this phase, the focus will be on bug fixes and overall quality-of-life improvements.
+
+A significant change from version 1.0.0-alpha.3 is the introduction of custom block directives. More details about this feature can be found in the corresponding [documentation](/docs/themes/block-directives/) section.
+
+Another new feature is the init command, which assists in bootstrapping the creation of a static website. Simply run `toucan init` to get started.
+
+This is a great time to start building your own site with Toucan. The team is eager to see the projects created using our static site generator.
+
+Check out the sample repositories for inspiration and start building your own site or theme with Toucan:
+
+- [The.Swift.Dev](https://github.com/theswiftdev/blog)
+- [toucansites.com](https://github.com/toucansites/website)
+- [Minimal example](https://github.com/toucansites/minimal-example)
+- [Swift on Server](https://github.com/swift-on-server/site/)
+
+We hope you find Toucan easy to use, and we greatly value your feedback. 🙏
+
+
+
+
+
+
+
diff --git a/src/contents/blog/articles/last-alpha-release/index.md b/src/contents/blog/articles/last-alpha-release/index.md
index a421ce0..105cfc5 100644
--- a/src/contents/blog/articles/last-alpha-release/index.md
+++ b/src/contents/blog/articles/last-alpha-release/index.md
@@ -2,12 +2,12 @@
type: post
title: "Last alpha release"
description: "Toucan 1.0.0-alpha.3 is now released, this article will help you to understand the changes and to migrate your site from alpha 2."
-publication: "2024-10-15 00:00:00"
+publication: "2024-10-17 00:00:00"
tags:
- releases
authors:
- tibor-bodecs
-featured: true
+featured: false
---
The alpha testing phase for Toucan is now finished with the release of the final alpha version, [1.0.0-alpha.3](https://github.com/toucansites/toucan/releases). We are preparing to begin the beta release cycle shortly.
diff --git a/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md b/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md
index 960dc12..798b83c 100644
--- a/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md
+++ b/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md
@@ -7,7 +7,7 @@ tags:
- releases
authors:
- tibor-bodecs
-featured: true
+featured: false
---
## What is Toucan?
diff --git a/src/contents/docs/getting-started/commands/index.md b/src/contents/docs/getting-started/commands/index.md
index c366b5d..bfff895 100644
--- a/src/contents/docs/getting-started/commands/index.md
+++ b/src/contents/docs/getting-started/commands/index.md
@@ -23,7 +23,7 @@ toucan generate ./src ./docs --base-url http://localhost:3000/
The `watch` command monitors a source directory for changes and automatically rebuilds the distribution files, regenerating the site whenever changes are detected.
-> Please note that the `watch` command is only available on macOS during the alpha release.
+> Please note that the `watch` command is only available on macOS during the beta release.
```sh
toucan watch ./src ./docs --base-url http://localhost:3000/
diff --git a/src/contents/docs/index.md b/src/contents/docs/index.md
index deb50ed..2c6dcb3 100644
--- a/src/contents/docs/index.md
+++ b/src/contents/docs/index.md
@@ -6,7 +6,7 @@ template: docs.home
# Docs
-Toucan is currently released as an [alpha-version](https://github.com/binarybirds/toucan).
+Toucan is currently released as an [beta-version](https://github.com/binarybirds/toucan).
Welcome to the Toucan user docs. This page is currently work in progress. We're going to provide the documentation for our static site during the upcoming weeks. Thank you very much for your patience. 🙏
diff --git a/src/contents/docs/installation/index.md b/src/contents/docs/installation/index.md
index 87d8ec5..31cc465 100644
--- a/src/contents/docs/installation/index.md
+++ b/src/contents/docs/installation/index.md
@@ -7,4 +7,4 @@ order: 1
# Installation
-During the alpha release, Toucan is available only for macOS and Linux. Windows support will be coming soon.
+During the beta release, Toucan is available only for macOS and Linux. Windows support will be coming soon.
diff --git a/src/contents/docs/installation/linux/index.md b/src/contents/docs/installation/linux/index.md
index 95a0a14..12d1f3a 100644
--- a/src/contents/docs/installation/linux/index.md
+++ b/src/contents/docs/installation/linux/index.md
@@ -9,7 +9,7 @@ order: 2
# Linux
---
-During the alpha release, Toucan can be installed on Linux by compiling from source.
+During the beta release, Toucan can be installed on Linux by compiling from source.
Please note that the `watch` command is not fully supported yet, but this feature will be available on Linux in a future release.
diff --git a/src/contents/docs/installation/macos/index.md b/src/contents/docs/installation/macos/index.md
index e764135..99deeca 100644
--- a/src/contents/docs/installation/macos/index.md
+++ b/src/contents/docs/installation/macos/index.md
@@ -9,7 +9,7 @@ order: 1
# macOS
---
-During the alpha release, Toucan can be installed on macOS by compiling from source. Support for [Brew](https://brew.sh/) and [Mint](https://github.com/yonaskolb/Mint) package managers is coming soon.
+During the beta release, Toucan can be installed on macOS by compiling from source. Support for [Brew](https://brew.sh/) and [Mint](https://github.com/yonaskolb/Mint) package managers is coming soon.
## Quick install
diff --git a/src/contents/docs/installation/windows/index.md b/src/contents/docs/installation/windows/index.md
index 3a05dc7..3b5c662 100644
--- a/src/contents/docs/installation/windows/index.md
+++ b/src/contents/docs/installation/windows/index.md
@@ -9,6 +9,6 @@ order: 3
# Windows
---
-Toucan is available for [macOS](/docs/installation/macos/) and [Linux](/docs/installation/linux/) during the alpha release, with Windows support coming soon.
+Toucan is available for [macOS](/docs/installation/macos/) and [Linux](/docs/installation/linux/) during the beta release, with Windows support coming soon.
If you'd like to help improve Toucan on Windows, consider submitting a PR to the project's repository on [GitHub](https://github.com/toucansites/toucan/pulls). 🙏
\ No newline at end of file
diff --git a/src/contents/docs/themes/content-types/index.md b/src/contents/docs/themes/content-types/index.md
index 3834233..7daffa3 100644
--- a/src/contents/docs/themes/content-types/index.md
+++ b/src/contents/docs/themes/content-types/index.md
@@ -50,6 +50,6 @@ context:
```
-Content types, including pagination and property validation, are still subject to change during the alpha and beta release cycles.
+Content types, including pagination and property validation, are still subject to change during beta release cycle.
Additional documentation will be provided once this feature is stabilized.
\ No newline at end of file
diff --git a/src/contents/docs/themes/toucan-templates/index.md b/src/contents/docs/themes/toucan-templates/index.md
index c0e6952..72fbcb5 100644
--- a/src/contents/docs/themes/toucan-templates/index.md
+++ b/src/contents/docs/themes/toucan-templates/index.md
@@ -9,7 +9,7 @@ order: 5
# Toucan templates
---
-The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the alpha and beta release cycles.
+The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the beta release cycle.
## Top-level templates