summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-08-17 22:32:15 +0200
committerSebastian Thiel <byronimo@gmail.com>2015-08-17 22:33:02 +0200
commita8f7e3772f68c8e6350b9ff5ac981ba3223f2d43 (patch)
treece01004c2f928cc71265e8a3b832c03bc111da11 /doc
parent039e265819cc6e5241907f1be30d2510bfa5ca6c (diff)
downloadgitpython-a8f7e3772f68c8e6350b9ff5ac981ba3223f2d43.tar.gz
fix(commit): serialization timezone handling
Previously timezones which were not divisable by 3600s would be parsed correctly, but would serialize into a full hour, rounded up. Now floating point computation is used which fixes the issue. Related to #336
Diffstat (limited to 'doc')
-rw-r--r--doc/source/changes.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index e6d7b09b..970ba195 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -2,6 +2,13 @@
Changelog
=========
+1.0.2 - Fixes
+=============
+
+* CRITICAL: fixed incorrect `Commit` object serialization when authored or commit date had timezones which were not
+ divisable by 3600 seconds. This would happen if the timezone was something like `+0530` for instance.
+* A list of all additional fixes can be found `on github <https://github.com/gitpython-developers/GitPython/issues?q=milestone%3A%22v1.0.2+-+Fixes%22+is%3Aclosed>`_
+
1.0.1 - Fixes
=============