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
- Added in Pull Request [#3](https://github.com/space-code/network-layer/pull/3).
36
+
Released on 2023-12-04. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/network-layer/milestones?state=closed&q=1.0.0).
21
37
22
-
#### Fixed
23
-
- Fix the `inout` parameter in the `IAuthenticator` protocol
24
-
- Fixed in Pull Request [#2](https://github.com/space-code/network-layer/pull/2).
25
-
- Fix the package builiding.
26
-
- Fixed in Pull Request [#6](https://github.com/space-code/network-layer/pull/6).
38
+
### Uncategorized Changes
39
+
- Implement `network-layer` package
40
+
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#1](https://github.com/space-code/network-layer/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