-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Changelog | ||
|
||
## [0.1.0] (2019-03-02) | ||
|
||
* Initial release of RAWRTCDC | ||
|
||
|
||
|
||
[0.1.0]: https://github.com/rawrtc/rawrtc-data-channel/compare/59e65d96a9feb4dd6b4a3b2f3a10ab7c067e2a60...v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Release Process | ||
|
||
Signing key: https://lgrahl.de/pub/pgp-key.txt | ||
|
||
1. Set variables: | ||
|
||
```bash | ||
export VERSION=<version> | ||
export GPG_KEY=3FDB14868A2B36D638F3C495F98FBED10482ABA6 | ||
``` | ||
|
||
2. Update version number in `meson.build` and `CHANGELOG.md`. Also, update the | ||
URL with the corresponding tags. | ||
|
||
3. Do a signed commit and signed tag of the release: | ||
|
||
```bash | ||
git add meson.build CHANGELOG.md | ||
git commit -S${GPG_KEY} -m "Release v${VERSION}" | ||
git tag -u ${GPG_KEY} -m "Release v${VERSION}" v${VERSION} | ||
``` | ||
|
||
4. Push. | ||
|
||
```bash | ||
git push && git push --tags | ||
``` | ||
|
||
5. Create a new release on GitHub. | ||
|
||
6. Prepare CHANGELOG.md for upcoming changes: | ||
|
||
```md | ||
## [Unreleased] (YYYY-MM-DD) | ||
|
||
* ... | ||
``` | ||
|
||
7. Pat yourself on the back and celebrate! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters