What's the easiest way to bump the version number for a package that shall be uploaded to a Launchpad PPA?
For instance, what I do now is that on each new release I unpack the previous *.debian.tar.gz
, then open debian/changelog
, copy/paste top-most entry:
package (1.67-1~precise~ppa1) precise; urgency=low
* New upstream release.
-- Name Surname <email@smth.asd> Wed, 19 Mar 2014 22:22:03 +0200
Then modify 1.67
to 1.68
, and manually change date to Tue, 03 Mar 2015
, and save file.
There surely must be a simpler way to do this...
dch
will useGeek <geek@liv-inspiron>
, instead of my usual name/email combination. How can I instruct it? – landroni Mar 03 '15 at 19:18DEBEMAIL
andDEBFULLNAME
environment variables. – Sylvain Pineau Mar 03 '15 at 19:28