File: RELEASING.md

package info (click to toggle)
lib2geom 1.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,116 kB
  • sloc: cpp: 64,251; python: 2,889; ansic: 1,963; makefile: 31
file content (21 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# REALISING
Add a release note to `NEWS.md`.

Set `2GEOM_MAJOR_VERSION`, `2GEOM_MINOR_VERSION`, and `2GEOM_PATCH_VERSION` in
*CMakeLists.txt*.

```bash
cmake .
make
make test
make dist
```

Next, copy `lib2geom-${VERSION}.tar.bz2` to `/tmp/``, extract it, and verify
it builds.

```bash
gpg --armor --detach-sign --output lib2geom-${VERSION}.tar.bz2.sig lib2geom-${VERSION}.tar.bz2
git tag -s ${MAJOR}.${MINOR}
git push --tags
```