You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Released on 2025-11-14. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/validator/milestones?state=closed&q=1.2.0).
22
+
23
+
### Uncategorized Changes
24
+
- Add support for Swift 6.2
25
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#18](https://github.com/space-code/validator/pull/18).
26
+
27
+
### New Contributors
28
+
*@ns-vasilev made their first contributionin [#18](https://github.com/space-code/validator/pull/18)
- Added in Pull Request [#13](https://github.com/space-code/validator/pull/13).
32
+
Released on 2024-12-24. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/validator/milestones?state=closed&q=1.1.0).
33
+
34
+
### Uncategorized Changes
35
+
- Update `README.md`
36
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#17](https://github.com/space-code/validator/pull/17).
37
+
- Update gem dependencies
38
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#15](https://github.com/space-code/validator/pull/15).
39
+
- Update `CHANGELOG.md`
40
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#14](https://github.com/space-code/validator/pull/14).
41
+
- Increase the `Swift` version to 6.0
42
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#13](https://github.com/space-code/validator/pull/13).
22
43
23
-
#### Updated
24
-
- Update gem dependencies.
25
-
- Updated in Pull Request [#15](https://github.com/space-code/validator/pull/15).
44
+
### New Contributors
45
+
*@ns-vasilev made their first contributionin [#17](https://github.com/space-code/validator/pull/17)
- Added in Pull Request [#6](https://github.com/space-code/validator/pull/6).
48
+
49
+
Released on 2024-01-10. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/validator/milestones?state=closed&q=1.0.1).
50
+
51
+
### Uncategorized Changes
52
+
- Update `CHANGELOG.md`
53
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#12](https://github.com/space-code/validator/pull/12).
54
+
55
+
### New Contributors
56
+
*@ns-vasilev made their first contributionin [#12](https://github.com/space-code/validator/pull/12)
- Added by [Nikita Vasilev](https://github.com/nik3212).
60
+
Released on 2023-10-09. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/validator/milestones?state=closed&q=1.0.0).
61
+
62
+
### Uncategorized Changes
63
+
- Update `CHANGELOG.md`
64
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#4](https://github.com/space-code/validator/pull/4).
65
+
- Update `CHANGELOG.md`
66
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#3](https://github.com/space-code/validator/pull/3).
67
+
- Implement `Validator` package
68
+
- Contributed by [ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#1](https://github.com/space-code/validator/pull/1).
69
+
70
+
### New Contributors
71
+
*@ns-vasilev made their first contributionin [#4](https://github.com/space-code/validator/pull/4)
## [{{ version | trim_start_matches(pat="v") }}]({{ self::remote_url() }}/releases/tag/{{ version }})
129
+
{{ "\n" }}
130
+
{#- LOGIC: Date and Milestone link (using version name search as proxy for ID) -#}
131
+
Released on {{ timestamp | date(format="%Y-%m-%d") }}. All issues associated with this milestone can be found using this [filter]({{ self::remote_url() }}/milestones?state=closed&q={{ version }}).
132
+
{%- else -%}
133
+
## [Unreleased]
134
+
{%- endif -%}
135
+
{{ "\n" }}
136
+
{%- endif -%}
137
+
138
+
{#- LOGIC: Loop through commit groups (Fixed, Added, etc.) -#}
139
+
{%- for group, commits_in_group in renderable_commits | group_by(attribute="group") -%}
140
+
141
+
{#- LOGIC: Determine the verb based on the group name -#}
142
+
{%- set action_verb = "Contributed by" -%}
143
+
{%- if group == "Features" -%}
144
+
{%- set action_verb = "Implemented by" -%}
145
+
{%- elif group == "Bug Fixes" -%}
146
+
{%- set action_verb = "Fixed by" -%}
147
+
{%- elif group == "Performance" -%}
148
+
{%- set action_verb = "Optimized by" -%}
149
+
{%- elif group == "Documentation" -%}
150
+
{%- set action_verb = "Documented by" -%}
151
+
{%- endif -%}
152
+
153
+
{%- if group == "Uncategorized Changes" -%}
154
+
{%- if commits_in_group | length == 0 -%}
155
+
{%- continue -%}
156
+
{%- endif -%}
157
+
{%- endif -%}
158
+
159
+
{{ "\n" }}### {{ group | upper_first }}
160
+
161
+
{#- LOGIC: Loop through commits -#}
162
+
{%- for commit in commits -%}
163
+
{%- if commit.conventional or commit.remote.pr_number -%}
164
+
{%- set message = commit.message | split(pat="\n") | first | upper_first | trim -%}
165
+
166
+
{#- VISUAL: Commit message line -#}
167
+
{{ "\n" }}- {{ message }}
168
+
169
+
{%- if commit.remote.username and commit.remote.pr_number -%}
0 commit comments