Skip to content

Commit

Permalink
Prep for release v3.9.39 (#1480)
Browse files Browse the repository at this point in the history
Co-authored-by: Jessica Black <[email protected]>
  • Loading branch information
spatten and jssblck authored Nov 14, 2024
1 parent f7c79a3 commit 4471697
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# FOSSA CLI Changelog

## 3.9.39
- 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))

## 3.9.38
- 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))
- Fixes a small typo in an error heading ([#1476](https://github.com/fossas/fossa-cli/pull/1476))
Expand Down
7 changes: 4 additions & 3 deletions docs/contributing/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ We'll assume that you want to release all changes currently on `master`. You sh
git checkout master
git pull origin

git tag -a vX.Y.Z -m "Releases vX.Y.Z"
git push origin vX.Y.Z
export TAG_NAME="vX.Y.Z"
git tag -a $TAG_NAME -m "Releases $TAG_NAME"
git push origin $TAG_NAME
```
Replace `vX.Y.Z` with your version number, such as `v3.1.4`. The tag _must_ start with `v`.
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).
4. If nothing has changed to dissuade you it's time to publish.
1. Add the notes for this release from [Changelog.md](./../../Changelog.md) to the release description.
2. Hit "publish" at the bottom.
5. Inform our users!
5. Inform our users!

0 comments on commit 4471697

Please sign in to comment.