commit caca6af6d81e0008a6b84bffef73b4e23a08520f
Author: Monty Taylor <mordred@inaugust.com>
Date:   Sat Jul 14 08:16:54 2012 -0500

    Handle the case of no Co-authored-by: tags.
    
    Change-Id: I1f535a0cdb850df8d5888bb78a5c237f8d626329

 pbr/cmdclass.py |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 93655fc422340d59c7a57d3e25f5bdf8c44975a2
Author: Monty Taylor <mordred@inaugust.com>
Date:   Fri Jul 13 18:43:08 2012 -0500

    Learn about python sets.
    
    Change-Id: Idb7b30f84820fab67e7694077bb68b6fdc3d2f6f

 pbr/cmdclass.py |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 704d2c485ae161700ae340bbfde025fe1e717286
Author: Monty Taylor <mordred@inaugust.com>
Date:   Fri Jul 13 10:46:01 2012 -0500

    Add support for including Co-authored-by entries.
    
    Some patches authorship is indicated in shared patches by Co-authored-by
    entries:
    
    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=451880
    http://comments.gmane.org/gmane.comp.lib.gnulib.bugs/28848
    
    Those should hit the AUTHORS file.
    
    Change-Id: I83645dae0088ccb1ddce8f8c415693d55ff5cd04

 pbr/cmdclass.py |   12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit ba99fbd7f5701446e731056885cf8fb0fb9b0fcd
Author: Monty Taylor <mordred@inaugust.com>
Date:   Fri Jul 13 09:10:26 2012 -0500

    Change default version object.
    
    The version_info version object is a useful thing for consumers to
    use in other places, so having it be prefixed with __ is not great.
    
    Change-Id: I20e870ce735d79594fd23b5bda36f73f8867153c

 pbr/__init__.py |    4 ++--
 pbr/version.py  |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit f6f3717328f612b012daad08245ec8b391de0279
Author: Monty Taylor <mordred@inaugust.com>
Date:   Fri Jul 13 17:05:36 2012 -0500

    Fix build failures.
    
    pep8 violation in tests
    doc build failure due to lack of docs
    
    Change-Id: I0d7b38f32d06aed8c04708908df31650b60b74f2

 doc/source/conf.py         |   60 ++++++++++++++++++
 doc/source/index.rst       |  147 ++++++++++++++++++++++++++++++++++++++++++++
 pbr/tests/test_requires.py |    4 +-
 3 files changed, 209 insertions(+), 2 deletions(-)

commit 1f58ca481f0ab812e7f41990e439f960e338c122
Author: Monty Taylor <mordred@inaugust.com>
Date:   Thu Jul 12 13:29:39 2012 -0500

    Initial commit of PBR.
    
    PBR is a library to automatically do a bunch of standard things you want
    in your setup.py without you having to repeat them every time. It will
    set versions, process requirements files and generate AUTHORS and
    ChangeLog file all from git information.

 .coveragerc                |    6 ++
 .gitignore                 |   22 ++++++
 .gitreview                 |    4 +
 MANIFEST.in                |    6 ++
 README.rst                 |  138 +++++++++++++++++++++++++++++++++++
 pbr/__init__.py            |   20 +++++
 pbr/cmdclass.py            |  163 +++++++++++++++++++++++++++++++++++++++++
 pbr/requires.py            |   95 ++++++++++++++++++++++++
 pbr/setup.py               |  134 ++++++++++++++++++++++++++++++++++
 pbr/tests/test_requires.py |   58 +++++++++++++++
 pbr/util.py                |   29 ++++++++
 pbr/version.py             |  173 ++++++++++++++++++++++++++++++++++++++++++++
 setup.cfg                  |   16 ++++
 setup.py                   |   47 ++++++++++++
 tools/pip-requires         |    1 +
 tools/test-requires        |    9 +++
 tox.ini                    |   28 +++++++
 17 files changed, 949 insertions(+)