Skip to content

Commit

Permalink
👷 concise release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
juftin committed Dec 7, 2023
1 parent 28fc402 commit 6bee927
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 156 deletions.
93 changes: 0 additions & 93 deletions .github/semantic_release/release_notes.hbs

This file was deleted.

61 changes: 0 additions & 61 deletions .releaserc.js

This file was deleted.

46 changes: 46 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"branches": [
"main",
"master",
"next",
"next-major",
"+([0-9])?(.{+([0-9]),x}).x",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"semantic-release-gitmoji",
[
"@semantic-release/exec",
{
"prepareCmd": "hatch version ${nextRelease.version} && hatch build"
}
],
[
"@semantic-release/git",
{
"assets": ["pyproject.toml", "*/__about__.py"],
"message": "🔖 hatch-pip-compile ${nextRelease.version}\n\n${nextRelease.notes}\n[skip ci]"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/*.whl"
},
{
"path": "dist/*.tar.gz"
}
]
}
]
]
}
4 changes: 2 additions & 2 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,15 @@ commit message might look like:
💥 Breaking Change Description
```

Other commits that don't trigger a release, but get included in the
release notes might look like:
Other commits that don't trigger a release might look like:

```text
📝 Documentation Update Description
👷 CI/CD Update Description
🧪 Testing Changes Description
🚚 Moving/Renaming Description
⬆️ Dependency Upgrade Description
🎨 Non-Material Code Tidying Description
```

### Pre-Releases
Expand Down

0 comments on commit 6bee927

Please sign in to comment.