diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-30 21:13:03 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-30 21:13:03 -0400 |
commit | 273400f95ae036c01d4b0fd7a7ca6ab160efd958 (patch) | |
tree | bcd592a8292023079eec903c126257d733057ea4 | |
parent | 233e3ffe0ef35dbabe49340ba567499690dcc166 (diff) | |
download | gitpython-273400f95ae036c01d4b0fd7a7ca6ab160efd958.tar.gz |
added in changes to this release
.
-rw-r--r-- | CHANGES | 36 |
1 files changed, 30 insertions, 6 deletions
@@ -5,17 +5,41 @@ CHANGES 0.1.3 ===== +* renamed ``git_python`` to ``git``. Be sure to delete all pyc files before + testing. + Git --- -* Removed shell escaping completely -* Added support for stderr and stdin -* Added new +* Removed shell escaping completely. + +* Added support for ``stderr``, ``stdin``, and ``with_status``. + +* ``git_dir`` is now optional in the constructor for ``git.Git``. Git now + falls back to ``os.getcwd()`` when git_dir is not specified. + +* add a ``with_exceptions`` keyword argument to git commands. ``GitCommandError`` + is raised when the exit status is non-zero. + +* add support for a ``GIT_PYTHON_TRACE`` environment variable. + ``GIT_PYTHON_TRACE`` allows us to debug GitPython's usage of git through + the use of an environment variable. + +Tree +---- +* Fixed up problem where ``name`` doesn't exist on root of tree. + +Repo +---- +* Corrected problem with creating bare repo. Added ``Repo.create`` alias. 0.1.2 ===== -Corrected problem with Tree.__div__ not working with zero length files. -Removed __len__ override and replaced with size instead. Also made size cache -properly. This is a breaking change. + +Tree +---- +* Corrected problem with ``Tree.__div__`` not working with zero length files. + Removed ``__len__`` override and replaced with size instead. Also made size + cach properly. This is a breaking change. 0.1.1 ===== |