From f7b15b549561947ee7bb6859ff1ff2832d8b5074 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 28 Aug 2018 00:51:10 -0400 Subject: [PATCH] Version bump; PyPI tweaks. --- CHANGELOG | 4 ++++ README.md | 4 ++++ gitup/__init__.py | 2 +- setup.py | 1 + 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index f9a9800..c247772 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v0.6 (unreleased): + +- ... + v0.5 (released August 28, 2018): - Added a `--depth` flag to control recursion depth when searching for diff --git a/README.md b/README.md index eefa4e2..d470a48 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ version of git and either Python 2.7 or Python 3 installed. # Installation +With [pip](https://github.com/pypa/pip/): + + pip install gitup + With [Homebrew](http://brew.sh/): brew install gitup diff --git a/gitup/__init__.py b/gitup/__init__.py index b973f47..0467a3c 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-2018 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.5" +__version__ = "0.6.dev0" __email__ = "ben.kurtovic@gmail.com" diff --git a/setup.py b/setup.py index 7b8ce11..cbfc306 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ setup( author_email = "ben.kurtovic@gmail.com", description = "Easily update multiple git repositories at once", long_description = long_desc, + long_description_content_type = "text/markdown", license = "MIT License", keywords = "git repository pull update", url = "https://github.com/earwig/git-repo-updater",