diff -Nru ghp-import-0.5.4/debian/changelog ghp-import-0.5.5/debian/changelog --- ghp-import-0.5.4/debian/changelog 2016-12-24 19:09:30.000000000 +0000 +++ ghp-import-0.5.5/debian/changelog 2017-07-02 23:30:33.000000000 +0000 @@ -1,3 +1,9 @@ +ghp-import (0.5.5-1) unstable; urgency=medium + + * New upstream release + + -- Andrew Starr-Bochicchio Sun, 02 Jul 2017 18:30:33 -0500 + ghp-import (0.5.4-1) unstable; urgency=medium * New upstream release. diff -Nru ghp-import-0.5.4/ghp_import.egg-info/PKG-INFO ghp-import-0.5.5/ghp_import.egg-info/PKG-INFO --- ghp-import-0.5.4/ghp_import.egg-info/PKG-INFO 2016-12-18 19:11:25.000000000 +0000 +++ ghp-import-0.5.5/ghp_import.egg-info/PKG-INFO 2017-02-26 02:06:42.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: ghp-import -Version: 0.5.4 +Version: 0.5.5 Summary: Copy your docs directly to the gh-pages branch. Home-page: http://github.com/davisp/ghp-import Author: Paul Joseph Davis diff -Nru ghp-import-0.5.4/ghp_import.py ghp-import-0.5.5/ghp_import.py --- ghp-import-0.5.4/ghp_import.py 2016-12-18 19:08:59.000000000 +0000 +++ ghp-import-0.5.5/ghp_import.py 2017-02-26 02:06:20.000000000 +0000 @@ -189,26 +189,29 @@ def options(): return [ - op.make_option('-n', dest='nojekyll', default=False, + op.make_option('-n', '--no-jekyll', dest='nojekyll', default=False, action="store_true", help='Include a .nojekyll file in the branch.'), - op.make_option('-c', dest='cname', default=None, + op.make_option('-c', '--cname', dest='cname', default=None, help='Write a CNAME file with the given CNAME.'), - op.make_option('-m', dest='mesg', default='Update documentation', + op.make_option('-m', '--message', dest='mesg', + default='Update documentation', help='The commit message to use on the target branch.'), - op.make_option('-p', dest='push', default=False, action='store_true', + op.make_option('-p', '--push', dest='push', default=False, + action='store_true', help='Push the branch to origin/{branch} after committing.'), - op.make_option('-f', dest='force', default=False, action='store_true', + op.make_option('-f', '--force', dest='force', + default=False, action='store_true', help='Force the push to the repository'), - op.make_option('-r', dest='remote', default='origin', + op.make_option('-r', '--remote', dest='remote', default='origin', help='The name of the remote to push to. [%default]'), - op.make_option('-b', dest='branch', default='gh-pages', + op.make_option('-b', '--branch', dest='branch', default='gh-pages', help='Name of the branch to write to. [%default]'), - op.make_option('-s', dest='use_shell', default=False, + op.make_option('-s', '--shell', dest='use_shell', default=False, action='store_true', help='Use the shell when invoking Git. [%default]'), - op.make_option('-l', dest='followlinks', default=False, - action='store_true', + op.make_option('-l', '--follow-links', dest='followlinks', + default=False, action='store_true', help='Follow symlinks when adding files. [%default]') ] diff -Nru ghp-import-0.5.4/PKG-INFO ghp-import-0.5.5/PKG-INFO --- ghp-import-0.5.4/PKG-INFO 2016-12-18 19:11:25.000000000 +0000 +++ ghp-import-0.5.5/PKG-INFO 2017-02-26 02:06:42.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: ghp-import -Version: 0.5.4 +Version: 0.5.5 Summary: Copy your docs directly to the gh-pages branch. Home-page: http://github.com/davisp/ghp-import Author: Paul Joseph Davis diff -Nru ghp-import-0.5.4/setup.py ghp-import-0.5.5/setup.py --- ghp-import-0.5.4/setup.py 2016-12-18 19:11:02.000000000 +0000 +++ ghp-import-0.5.5/setup.py 2017-02-26 02:06:20.000000000 +0000 @@ -12,7 +12,7 @@ setup( name = "ghp-import", - version = "0.5.4", + version = "0.5.5", description = "Copy your docs directly to the gh-pages branch.", long_description = LONG_DESC, author = "Paul Joseph Davis",