-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document how to release and log changes in deb pkg (#52)
Co-authored-by: Christophe Philemotte <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 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 |
---|---|---|
|
@@ -112,7 +112,30 @@ You can update openhexa with | |
|
||
#### Release, changelog, and versions | ||
|
||
The vesions are described into the [changelog file](debian/changelog). The last | ||
one is unreleased and is the one that is published. To manage versions and | ||
changelog, we use the debhelper tool `dch`. | ||
|
||
To add a new change, do: | ||
|
||
```bash | ||
EMAIL="firstname lastname <[email protected]>" dch -a | ||
``` | ||
|
||
This will open your favorite editor so you can edit the changelog. Save, commit, | ||
push, and GitHub Actions will do the rest. | ||
|
||
To release a version, do: | ||
|
||
```bash | ||
EMAIL="firstname lastname <[email protected]>" dch -rD stable | ||
``` | ||
|
||
To add a new unreleased version do | ||
|
||
```bash | ||
EMAIL="firstname lastname <[email protected]>" dch -i -D UNRELEASED -U | ||
``` | ||
|
||
#### Build | ||
|
||
|
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