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
Copy file name to clipboardExpand all lines: README_CONTRIBUTORS_AND_MAINTAINERS.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,8 @@ To release a new version, follow these steps:
177
177
### Creating the release
178
178
179
179
- Choose a new version number according to the [Semantic Versioning](https://semver.org/) scheme.
180
-
- Create a new tag for the new version with the following command (making sure you are on the commit you want to tag as the release (usually the most recent one)):
180
+
- Make sure that you are on the commit you want to tag as the release (usually the most recent one).
181
+
- Create a new tag for the new version with the following command:
181
182
```shell
182
183
$ git tag -a <tag> -m "<description>"
183
184
```
@@ -189,10 +190,13 @@ To release a new version, follow these steps:
189
190
It is important that the tag name starts with a lowercase `v` followed by the version number (meaning it must match `v*.*.*`).
190
191
- Push the tag to the repository:
191
192
```shell
192
-
$ git push origin tag v1.2.3
193
+
$ git push # push the changes
194
+
$ git push origin tag <tag># push the tag
193
195
```
196
+
(replace `<tag>` with the tag name, e.g., `v1.2.3`)
197
+
194
198
This automatically triggers GitHub actions to do the following things (defined in the [.github/workflows/](.github/workflows/) directory):
195
-
-Publish the documentation on GitHub Pages.
199
+
-Compile and publish the documentation on GitHub Pages.
196
200
- Create a release draft on GitHub with the single-header include file already attached.
197
201
- Edit the release draft in the [releases section on GitHub](https://github.com/ti-uni-bielefeld/T-SIMD/releases) to add the changelog and other information. See the previous releases for examples.
198
202
- Note that you might have to wait a few moments for the GitHub actions to finish before the release draft appears.
0 commit comments