testcontainers-ext 0.1.0

Utilities collection of extension traits for testcontainers-rs.
Documentation
[workspace]
git_release_enable = true # enable GitHub releases
pr_labels = ["release"]   # add the `release` label to the release Pull Request

[[package]]
name = "testcontainers-ext"
git_tag_name = "{{ version }}"
changelog_path = "CHANGELOG.md"

[changelog]
# template for the changelog header
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
# template for the changelog body
# https://keats.github.io/tera/docs/#introduction
body = """
{% if version %}\
    ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
    ## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
    ### {{ group | striptags | trim | upper_first }}
    {% for commit in commits %}
        - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
            {% if commit.breaking %}[**breaking**] {% endif %}\
            {{ commit.message | upper_first }}\
    {% endfor %}
{% endfor %}\n
"""
# remove the leading and trailing s
trim = true