summaryrefslogtreecommitdiff
path: root/doc/source/changes.rst
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-21 18:56:29 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-21 18:57:34 +0100
commitd565a874f29701531ce1fc0779592838040d3edf (patch)
treec2ba9a69ae90eedc01616b409a179baf705a3feb /doc/source/changes.rst
parente4d3809161fc54d6913c0c2c7f6a7b51eebe223f (diff)
downloadgitpython-d565a874f29701531ce1fc0779592838040d3edf.tar.gz
Fixed regression in test-suite for IndexFile
Previously, it checked for AssertionErrors, now we have to implement need-unbare-repo check ourselves.
Diffstat (limited to 'doc/source/changes.rst')
-rw-r--r--doc/source/changes.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 4f67c1bb..2da3dad2 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -10,7 +10,12 @@ Changelog
* DOCS: special members like `__init__` are now listed in the API documentation
* DOCS: tutorial section was revised entirely
* Added `Submodule.rename()`
-* **POSSIBLY BREAKING CHANGE**: As `rev_parse` will now throw `BadName` as well as `BadObject`, client code will have to catch both exception types.
+* **POSSIBLY BREAKING CHANGES**
+
+ * As `rev_parse` will now throw `BadName` as well as `BadObject`, client code will have to catch both exception types.
+ * Repo.working_tree_dir now returns None if it is bare. Previously it raised AssertionError.
+ * IndexFile.add() previously raised AssertionError when paths where used with bare repository, now it raises InvalidGitRepositoryError
+
* A list of all issues can be found here: https://github.com/gitpython-developers/GitPython/issues?q=milestone%3A%22v0.3.6+-+Features%22+
0.3.5 - Bugfixes