Skip to content

Commit 4471697

Browse files
spattenjssblck
andauthored
Prep for release v3.9.39 (#1480)
Co-authored-by: Jessica Black <[email protected]>
1 parent f7c79a3 commit 4471697

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# FOSSA CLI Changelog
22

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+
36
## 3.9.38
47
- 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))
58
- Fixes a small typo in an error heading ([#1476](https://github.com/fossas/fossa-cli/pull/1476))

docs/contributing/releases.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ We'll assume that you want to release all changes currently on `master`. You sh
1414
git checkout master
1515
git pull origin
1616

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
1920
```
2021
Replace `vX.Y.Z` with your version number, such as `v3.1.4`. The tag _must_ start with `v`.
2122
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).
2223
4. If nothing has changed to dissuade you it's time to publish.
2324
1. Add the notes for this release from [Changelog.md](./../../Changelog.md) to the release description.
2425
2. Hit "publish" at the bottom.
25-
5. Inform our users!
26+
5. Inform our users!

0 commit comments

Comments
 (0)