Skip to content

Commit

Permalink
Document how to release and log changes in deb pkg (#52)
Browse files Browse the repository at this point in the history
Co-authored-by: Christophe Philemotte <[email protected]>
  • Loading branch information
toch and toch authored Nov 26, 2024
1 parent aa7c7dc commit f8137f2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
openhexa (1.0-2ubuntu1) UNRELEASED; urgency=high
openhexa (1.0-2) UNRELEASED; urgency=high

* Fix CORS WSS bug when browsing notebook and running cell
(Closes: #HEXA-1093)
Expand Down

0 comments on commit f8137f2

Please sign in to comment.