summaryrefslogtreecommitdiff
path: root/doc/source/changes.rst
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-11-24 21:33:36 +0100
committerSebastian Thiel <byronimo@gmail.com>2010-11-24 21:33:36 +0100
commit968ffb2c2e5c6066a2b01ad2a0833c2800880d46 (patch)
treea5f0b7417f39364d83409edf4d382c6a8c36ff49 /doc/source/changes.rst
parent3175b5b21194bcc8f4448abe0a03a98d3a4a1360 (diff)
downloadgitpython-968ffb2c2e5c6066a2b01ad2a0833c2800880d46.tar.gz
Adjusted all Head.create calls to set a logmessage similar to the one git uses
Diffstat (limited to 'doc/source/changes.rst')
-rw-r--r--doc/source/changes.rst10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 7b959532..d820c8ca 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -17,9 +17,17 @@ Changelog
* ``set_commit(...)`` method added (reflog support)
* ``set_object(...)`` method added (reflog support)
- * Intrusive Changes to ``Head`` type
+ * **Intrusive Changes** to ``Head`` type
* ``create(...)`` method now supports the reflog, but will not raise ``GitCommandError`` anymore as it is a pure python implementation now. Instead, it raises ``OSError``.
+
+ * **Intrusive Changes** to ``Actor`` type
+
+ * the *name* field is now using unicode if ascii does not match
+
+ * **Intrusive Changes** to ``Repo`` type
+
+ * ``create_head(...)`` method does not support **kwargs anymore, instead it supports a logmsg parameter
* Repo.rev_parse now supports the [ref]@{n} syntax, where n is the number of steps to look into the reference's past