summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-20 10:45:40 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-20 10:45:40 +0200
commitdd76b9e72b21d2502a51e3605e5e6ab640e5f0bd (patch)
treeaf85f25dd2f3b1947177f8f2f7cfc4b8a08e1a2d /CHANGES
parentaa5e366889103172a9829730de1ba26d3dcbc01b (diff)
downloadgitpython-dd76b9e72b21d2502a51e3605e5e6ab640e5f0bd.tar.gz
Fixed bare repository handling - bare is now a property to prevent writing it
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index c66930d6..a60ed237 100644
--- a/CHANGES
+++ b/CHANGES
@@ -58,8 +58,8 @@ Config
------
* The git configuration can now be read and manipulated directly from within python
using the GitConfigParser
-* Repo.config_reader returns a read-only parser
-* Repo.config_writer returns a read-write parser
+* Repo.config_reader() returns a read-only parser
+* Repo.config_writer() returns a read-write parser
Diff
----
@@ -115,8 +115,9 @@ Repo
- 'head', creates a head object
- 'tag', creates a tag object
- 'iter_trees' method
- - 'config_reader' property
- - 'config_writer' property
+ - 'config_reader' method
+ - 'config_writer' method
+ - 'bare' property, previously it was a simple attribute that could be written
Remote
------