open the changelog for version 0.9.9, so that we can add changes to that version as we go along. use ~ as the svn version seperator so it's *lower* than 0.9.9 on snapshots

This commit is contained in:
Antoine Beaupré 2008-04-15 15:54:48 +00:00
parent 83f15dca0e
commit 71bda92a12
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
alternc (0.9.9) UNRELEASED; urgency=low
* development version
-- Antoine Beaupré <anarcat@koumbit.org> Tue, 15 Apr 2008 11:52:56 -0400
alternc (0.9.8) stable; urgency=high
This release is packed with minor enhancements and bugfixes. It also packages

2
debian/rules vendored
View File

@ -9,7 +9,7 @@
export DH_VERBOSE=1
MAJOR=$(shell sed -ne 's/^[^(]*(\([^)]*\)).*/\1/;1p' debian/changelog)
REV=$(shell LANG=C svn info --non-interactive | awk '/^Revision:/ { print $$2 }')
VERSION="${MAJOR}.r${REV}"
VERSION="${MAJOR}~svn${REV}"
export VERSION
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))