v0.2.0

Minor Changes

Sections listed in the collections: config now declare collection membership without requiring date-token permalink patterns. Non-blog sections like releases or changelogs can participate in collections.* pagination and template loops.

# alloy.config.yaml
collections:
  releases:
    sortBy: date
    order: desc
# content/releases/_data.yaml
permalink: "/releases/:title/"
{% for release in collections.releases %}
  <a href="{{ release.url }}">{{ release.title }}</a>
{% endfor %}

Patch Changes

Fix race conditions in concurrent plugin hook execution and runtime initialization.