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: Changelog.md
+3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# FOSSA CLI Changelog
2
2
3
+
## 3.9.39
4
+
- Licensing: Add the PSF-3.12.7 license. Make a correction to the MulanPSL license. Add a new public-domain rule ([#1480](https://github.com/fossas/fossa-cli/pull/1480))
5
+
3
6
## 3.9.38
4
7
- Adds clarity to "Invalid project permission" error message, instructing user to specify a team using `fossa analyze --team` or in the `.fossa.yml` file. ([#1475](https://github.com/fossas/fossa-cli/pull/1475))
5
8
- Fixes a small typo in an error heading ([#1476](https://github.com/fossas/fossa-cli/pull/1476))
Copy file name to clipboardExpand all lines: docs/contributing/releases.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,13 @@ We'll assume that you want to release all changes currently on `master`. You sh
14
14
git checkout master
15
15
git pull origin
16
16
17
-
git tag -a vX.Y.Z -m "Releases vX.Y.Z"
18
-
git push origin vX.Y.Z
17
+
export TAG_NAME="vX.Y.Z"
18
+
git tag -a $TAG_NAME -m "Releases $TAG_NAME"
19
+
git push origin $TAG_NAME
19
20
```
20
21
Replace `vX.Y.Z` with your version number, such as `v3.1.4`. The tag _must_ start with `v`.
21
22
3. GitHub Actions will take the tag and run some tests before generating a draft release which can be found on the [releases page](https://github.com/fossas/fossa-cli/releases).
22
23
4. If nothing has changed to dissuade you it's time to publish.
23
24
1. Add the notes for this release from [Changelog.md](./../../Changelog.md) to the release description.
0 commit comments