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 2024-12-23. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/atomic/milestones?state=closed&q=1.1.0).
60
+
61
+
### Uncategorized Changes
62
+
- Release `1.1.0`
63
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#15](https://github.com/space-code/atomic/pull/15).
64
+
- Update `CHANGELOG.md`
65
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#14](https://github.com/space-code/atomic/pull/14).
66
+
- Increase the Swift version to 6.0
67
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#13](https://github.com/space-code/atomic/pull/13).
Released on 2024-01-23. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/atomic/milestones?state=closed&q=1.0.1).
72
+
73
+
### Uncategorized Changes
74
+
- Release 1.0.1
75
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#12](https://github.com/space-code/atomic/pull/12).
Released on 2023-11-06. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/atomic/milestones?state=closed&q=1.0.0).
80
+
81
+
### Uncategorized Changes
82
+
- Release `1.0.0`
83
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#9](https://github.com/space-code/atomic/pull/9).
84
+
- Add Files to Comply With Community Standards
85
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#11](https://github.com/space-code/atomic/pull/11).
86
+
- Update GitHub Actions Workflow
87
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#10](https://github.com/space-code/atomic/pull/10).
Released on 2023-06-18. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/atomic/milestones?state=closed&q=0.0.1).
92
+
93
+
### Uncategorized Changes
94
+
- Implement `Atomic` package
95
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#1](https://github.com/space-code/atomic/pull/1).
## [{{ version | trim_start_matches(pat="v") }}]({{ self::remote_url() }}/releases/tag/{{ version | trim_start_matches(pat="v") }})
137
+
{{ "\n" }}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 }}).
138
+
{%- else -%}
139
+
## [Unreleased]
140
+
{%- endif -%}
141
+
142
+
{#- LOGIC: Loop through commit groups -#}
143
+
{%- for group, commits_in_group in renderable_commits | group_by(attribute="group") -%}
144
+
{%- if group == "Uncategorized Changes" and commits_in_group | length == 0 -%}
145
+
{%- continue -%}
146
+
{%- endif -%}
147
+
148
+
{# We also check that it is not the system group 'Other', which might be empty #}
149
+
{%- if group == "Other" and commits_in_group | length == 0 -%}
150
+
{%- continue -%}
151
+
{%- endif -%}
152
+
153
+
{%- set action_verb = "Contributed by" -%}
154
+
{%- if group == "Features" -%}
155
+
{%- set action_verb = "Implemented by" -%}
156
+
{%- elif group == "Bug Fixes" -%}
157
+
{%- set action_verb = "Fixed by" -%}
158
+
{%- elif group == "Performance" -%}
159
+
{%- set action_verb = "Optimized by" -%}
160
+
{%- elif group == "Documentation" -%}
161
+
{%- set action_verb = "Documented by" -%}
162
+
{%- endif -%}
163
+
164
+
{{ "\n" }}{{ "\n" }}### {{ group | upper_first }}
165
+
166
+
{#- THE LOOP NOW USES FILTERED COMMITS AND DOESN'T NEED AN INNER IF -#}
167
+
{%- for commit in commits_in_group -%}
168
+
{%- set message = commit.message | split(pat="\n") | first | upper_first | trim -%}
169
+
170
+
{#- VISUAL: Commit message line -#}
171
+
{{ "\n" }}- {{ message }}
172
+
173
+
{%- if commit.remote.username and commit.remote.pr_number -%}
0 commit comments