Things to do to make a release
--------------------------------
1. Update setup.py version field.

2. Update man page (line 1) with current month, year and version number

3. Update .version with correction version number

4. Update debian/changelog
  
  4a. Create new section in changelog for this version
      cd install/ubuntu-installer/
      dch --check-dirname-level 0 --newversion 1.2-1
  
  4b. Change "UNRELEASED; urgency=medium" to "unstable; urgency=low"

  4c. Fill in changelog with needed bullet points.
    
5. Test release:

    5a. cd install/ubuntu-installer/
        ./make-test-tgz.sh
        
    5b. Create test deb.
        cd install/ubuntu-installer/
        ./make-deb.sh
    
    5c. Install and test install/ubuntu-installer/deb/vizigrep_____.deb

6. Commit the above changes, tag release and push to Github.
   git commit -a -m'Release v1.2'
   git tag v1.2
   git push
   git push origin --tags

7. Make deb install data
   cd install/ubuntu-installer/
   rm v1.2.tar.gz
   ./make-deb.sh

Update a release tag
-----------------------
If you messed up and need to delete and update a release tag:

git tag -d v1.2
git push origin :refs/tags/v1.2

Now just re-add the tag when you are ready.
