1If you're going to package nickle for release, there are several
2important steps:
3
4 1.	Create new version
5 		edit configure.in, changing the version number in the
6		AC_INIT line
7
8 2. 	rebuild the configuration files with autogen.sh
9 		sh autogen.sh --prefix=/usr --mandir=/usr/share/man
10
11 3.	make distcheck
12
13 4.	Update debian/changelog
14
15		git log --pretty=oneline 2.<xx>..master
16
17 5.	Build the release
18
19		make release-files
20
21 6.	Commit these changes
22
23		git-commit -m'Update to version 2.<xx>' -a
24
25 7.	Tag
26
27		git-tag -s -m 'Version 2.<xx>' 2.<xx>
28
29 8.	Push out changes to the repo
30
31		git-push origin master 2.<xx>
32
33 9.	Push out the release
34
35		make release
36
3710.	Push debian bits
38
39		dput nickle_2.<xx>-1_i386.changes
40