From 10494e677bba19622acfa3fc62093a06451c8562 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 7 Jun 2015 15:28:35 -0400 Subject: [PATCH] release/0.3 --- CHANGELOG | 2 +- gitup/__init__.py | 2 +- gitup/script.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6889f0e..202265f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v0.3 (unreleased): +v0.3 (released June 7, 2015): - Added support for Python 3. - Fixed behavior on bare repositories. diff --git a/gitup/__init__.py b/gitup/__init__.py index 9a1d295..f031df0 100644 --- a/gitup/__init__.py +++ b/gitup/__init__.py @@ -10,5 +10,5 @@ gitup: the git repository updater __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2011-2015 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.3.dev0" +__version__ = "0.3" __email__ = "ben.kurtovic@gmail.com" diff --git a/gitup/script.py b/gitup/script.py index 496767e..d353412 100644 --- a/gitup/script.py +++ b/gitup/script.py @@ -39,8 +39,8 @@ def main(): '-c', '--current-only', action="store_true", help="""only fetch the remote tracked by the current branch instead of all remotes""") group_u.add_argument( - '-f', '--fetch-only', action="store_true", help="""only fetch remotes, - don't try to fast-forward any branches""") + '-f', '--fetch-only', action="store_true", + help="only fetch remotes, don't try to fast-forward any branches") group_b.add_argument( '-a', '--add', dest="bookmarks_to_add", nargs="+", metavar="path",