## {{ version }}

{{ date }}

{% if attention -%}
  ### ⚠️ Important Attention

  {% for content in attention -%}
    - {{ content }}
  {% endfor %}

{% endif %}
{% if enhancement -%}
  ### 💎 Enhancement

  {% for content in enhancement -%}
    - {{ content }}
  {% endfor %}

{% endif %}
{% if feature -%}
  ### 🆕 Feature

  {% for content in feature -%}
    - {{ content }}
  {% endfor %}

{% endif %}
{% if bugfix -%}
  ### 🐛 BugFix

  {% for content in bugfix -%}
    - {{ content }}
  {% endfor %}

{% endif %}
{% if style -%}
  ### 💅 Style

  {% for content in style -%}
    - {{ content }}
  {% endfor %}

{% endif %}
{% if typescript -%}
  ### 🆎 TypeScript

  {% for content in typescript -%}
    - {{ content }}
  {% endfor %}

{% endif %}
{% if chore -%}
  ### 🛠 Chore

  {% for content in chore -%}
    - {{ content }}
  {% endfor %}

{% endif %}