UNPKG

12.8 kBMarkdownView Raw
1<h1 align="center" style="border-bottom: none;">📦🚀 semantic-release</h1>
2<h3 align="center">Fully automated version management and package publishing</h3>
3<p align="center">
4 <a href="https://github.com/semantic-release/semantic-release/discussions">
5 <img alt="Join the community on GitHub Discussions" src="https://img.shields.io/badge/Join%20the%20community-on%20GitHub%20Discussions-blue">
6 </a>
7 <a href="https://github.com/semantic-release/semantic-release/actions?query=workflow%3ATest+branch%3Amaster">
8 <img alt="Build states" src="https://github.com/semantic-release/semantic-release/workflows/Test/badge.svg">
9 </a>
10 <a href="#badge">
11 <img alt="semantic-release" src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg">
12 </a>
13</p>
14<p align="center">
15 <a href="https://www.npmjs.com/package/semantic-release">
16 <img alt="npm latest version" src="https://img.shields.io/npm/v/semantic-release/latest.svg">
17 </a>
18 <a href="https://www.npmjs.com/package/semantic-release">
19 <img alt="npm next version" src="https://img.shields.io/npm/v/semantic-release/next.svg">
20 </a>
21 <a href="https://www.npmjs.com/package/semantic-release">
22 <img alt="npm beta version" src="https://img.shields.io/npm/v/semantic-release/beta.svg">
23 </a>
24</p>
25
26**semantic-release** automates the whole package release workflow including: determining the next version number, generating the release notes and publishing the package.
27
28This removes the immediate connection between human emotions and version numbers, strictly following the [Semantic Versioning](http://semver.org) specification.
29
30> Trust us, this will change your workflow for the better. – [egghead.io](https://egghead.io/lessons/javascript-how-to-write-a-javascript-library-automating-releases-with-semantic-release)
31
32## Highlights
33
34- Fully automated release
35- Enforce [Semantic Versioning](https://semver.org) specification
36- New features and fixes are immediately available to users
37- Notify maintainers and users of new releases
38- Use formalized commit message convention to document changes in the codebase
39- Publish on different distribution channels (such as [npm dist-tags](https://docs.npmjs.com/cli/dist-tag)) based on git merges
40- Integrate with your [continuous integration workflow](docs/recipes/README.md#ci-configurations)
41- Avoid potential errors associated with manual releases
42- Support any [package managers and languages](docs/recipes/README.md#package-managers-and-languages) via [plugins](docs/usage/plugins.md)
43- Simple and reusable configuration via [shareable configurations](docs/usage/shareable-configurations.md)
44
45## How does it work?
46
47### Commit message format
48
49**semantic-release** uses the commit messages to determine the type of changes in the codebase. Following formalized conventions for commit messages, **semantic-release** automatically determines the next [semantic version](https://semver.org) number, generates a changelog and publishes the release.
50
51By default **semantic-release** uses [Angular Commit Message Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-commit-message-format). The commit message format can be changed with the [`preset` or `config` options](docs/usage/configuration.md#options) of the [@semantic-release/commit-analyzer](https://github.com/semantic-release/commit-analyzer#options) and [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator#options) plugins.
52
53Tools such as [commitizen](https://github.com/commitizen/cz-cli) or [commitlint](https://github.com/conventional-changelog/commitlint) can be used to help contributors and enforce valid commit messages.
54
55Here is an example of the release type that will be done based on a commit messages:
56
57| Commit message | Release type |
58| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
59| `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
60| `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
61| `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release |
62
63### Automation with CI
64
65**semantic-release** is meant to be executed on the CI environment after every successful build on the release branch. This way no human is directly involved in the release process and the releases are guaranteed to be [unromantic and unsentimental](http://sentimentalversioning.org).
66
67### Triggering a release
68
69For each new commits added to one of the release branches (for example `master`, `next`, `beta`), with `git push` or by merging a pull request or merging from another branch, a CI build is triggered and runs the `semantic-release` command to make a release if there are codebase changes since the last release that affect the package functionalities.
70
71**semantic-release** offers various ways to control the timing, the content and the audience of published releases. See example workflows in the following recipes:
72
73- [Using distribution channels](docs/recipes/distribution-channels.md#publishing-on-distribution-channels)
74- [Maintenance releases](docs/recipes/maintenance-releases.md#publishing-maintenance-releases)
75- [Pre-releases](docs/recipes/pre-releases.md#publishing-pre-releases)
76
77### Release steps
78
79After running the tests, the command `semantic-release` will execute the following steps:
80
81| Step | Description |
82| ----------------- | ------------------------------------------------------------------------------------------------------------------------------- |
83| Verify Conditions | Verify all the conditions to proceed with the release. |
84| Get last release | Obtain the commit corresponding to the last release by analyzing [Git tags](https://git-scm.com/book/en/v2/Git-Basics-Tagging). |
85| Analyze commits | Determine the type of release based on the commits added since the last release. |
86| Verify release | Verify the release conformity. |
87| Generate notes | Generate release notes for the commits added since the last release. |
88| Create Git tag | Create a Git tag corresponding to the new release version. |
89| Prepare | Prepare the release. |
90| Publish | Publish the release. |
91| Notify | Notify of new releases or errors. |
92
93## Requirements
94
95In order to use **semantic-release** you need:
96
97- To host your code in a [Git repository](https://git-scm.com)
98- Use a Continuous Integration service that allows you to [securely set up credentials](docs/usage/ci-configuration.md#authentication)
99- Git CLI version [2.7.1 or higher](docs/support/FAQ.md#why-does-semantic-release-require-git-version--271) installed in your Continuous Integration environment
100- [Node.js](https://nodejs.org) version [10.18 or higher](docs/support/FAQ.md#why-does-semantic-release-require-node-version--1018) installed in your Continuous Integration environment
101
102## Documentation
103
104- Usage
105 - [Getting started](docs/usage/getting-started.md#getting-started)
106 - [Installation](docs/usage/installation.md#installation)
107 - [CI Configuration](docs/usage/ci-configuration.md#ci-configuration)
108 - [Configuration](docs/usage/configuration.md#configuration)
109 - [Plugins](docs/usage/plugins.md)
110 - [Workflow configuration](docs/usage/workflow-configuration.md)
111 - [Shareable configurations](docs/usage/shareable-configurations.md)
112- Extending
113 - [Plugins](docs/extending/plugins-list.md)
114 - [Shareable configuration](docs/extending/shareable-configurations-list.md)
115- Recipes
116 - [CI configurations](docs/recipes/README.md)
117 - [Git hosted services](docs/recipes/README.md)
118 - [Release workflow](docs/recipes/README.md)
119 - [Package managers and languages](docs/recipes/README.md)
120- Developer guide
121 - [JavaScript API](docs/developer-guide/js-api.md)
122 - [Plugins development](docs/developer-guide/plugin.md)
123 - [Shareable configuration development](docs/developer-guide/shareable-configuration.md)
124- Support
125 - [Resources](docs/support/resources.md)
126 - [Frequently Asked Questions](docs/support/FAQ.md)
127 - [Troubleshooting](docs/support/troubleshooting.md)
128 - [Node version requirement](docs/support/node-version.md)
129 - [Node Support Policy](docs/support/node-support-policy.md)
130
131## Get help
132
133- [Stack Overflow](https://stackoverflow.com/questions/tagged/semantic-release)
134- [GitHub Discussions](https://github.com/semantic-release/semantic-release/discussions)
135- [Twitter](https://twitter.com/SemanticRelease)
136
137## Badge
138
139Let people know that your package is published using **semantic-release** by including this badge in your readme.
140
141[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
142
143```md
144[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
145```
146
147## Team
148
149| [![Gregor Martynus](https://github.com/gr2m.png?size=100)](https://github.com/gr2m) | [![Pierre Vanduynslager](https://github.com/pvdlg.png?size=100)](https://github.com/pvdlg) | [![Matt Travi](https://github.com/travi.png?size=100)](https://github.com/travi) |
150| ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- |
151| [Gregor Martynus](https://github.com/gr2m) | [Pierre Vanduynslager](https://github.com/pvdlg) | [Matt Travi](https://github.com/travi) |
152
153## Alumni
154
155| [![Stephan Bönnemann](https://github.com/boennemann.png?size=100)](https://github.com/boennemann) | [![Rolf Erik Lekang](https://github.com/relekang.png?size=100)](https://github.com/relekang) | [![Johannes Jörg Schmidt](https://github.com/jo.png?size=100)](https://github.com/jo) | [![Finn Pauls](https://github.com/finnp.png?size=100)](https://github.com/finnp) | [![Christoph Witzko](https://github.com/christophwitzko.png?size=100)](https://github.com/christophwitzko) |
156| ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
157| [Stephan Bönnemann](https://github.com/boennemann) | [Rolf Erik Lekang](https://github.com/relekang) | [Johannes Jörg Schmidt](https://github.com/jo) | [Finn Pauls](https://github.com/finnp) | [Christoph Witzko](https://github.com/christophwitzko) |
158
159<p align="center">
160 <img alt="Kill all humans" src="media/bender.png">
161</p>