Skip to content

Commit

Permalink
🐛✏️ changelog displays versions *greater* than 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jul 3, 2024
1 parent 3ac735e commit cfeb32d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/CHANGELOG.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
{%- set _v = version.as_tag().split('.') %}
{%- set v.major = _v[0] %}
{%- set v.minor = _v[1] %}
{%- if v.major|int < 1 %}
{%- if v.major|int > 1 %}
## {{ version.as_tag() }} ({{ release.tagged_date.strftime("%Y-%m-%d") }})
{% for type_, commits in release["elements"] | dictsort %}
{% include '.parsed_commit_heading.j2' %}
Expand Down

0 comments on commit cfeb32d

Please sign in to comment.