summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-04-22 17:21:15 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-04-22 17:21:15 +0200
commitc883d129066f0aa11d806f123ef0ef1321262367 (patch)
tree5b8c2ce3a45d30375d0b4fa55bfc5f4559caf5c5
parent2807d494db24d4d113da88a46992a056942bd828 (diff)
downloadgitpython-c883d129066f0aa11d806f123ef0ef1321262367.tar.gz
version 2.0.0
-rw-r--r--VERSION2
-rw-r--r--doc/source/changes.rst19
2 files changed, 11 insertions, 10 deletions
diff --git a/VERSION b/VERSION
index 5ce2dddb..227cea21 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.0dev0
+2.0.0
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 7d0bdf2c..33261b6d 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -2,9 +2,18 @@
Changelog
=========
-1.1.0 - Features
+2.0.0 - Features
================
+Please note that due to breaking changes, we have to increase the major version.
+
+* **IMPORTANT**: This release drops support for python 2.6, which is
+ officially deprecated by the python maintainers.
+* **CRITICAL**: `Diff` objects created with patch output will now not carry
+ the --- and +++ header lines anymore. All diffs now start with the
+ @@ header line directly. Users that rely on the old behaviour can now
+ (reliably) read this information from the a_path and b_path properties
+ without having to parse these lines manually.
* `Commit` now has extra properties `authored_datetime` and
`committer_datetime` (to get Python datetime instances rather than
timestamps)
@@ -19,14 +28,6 @@ Changelog
deleted.
* Fix: diff parsing issues with paths that contain "unsafe" chars, like
spaces, tabs, backslashes, etc.
-* IMPORTANT: This release drops support for python 2.6, which is
- officially deprecated by the python maintainers.
-* CRITICAL: `Diff` objects created with patch output will now not carry
- the --- and +++ header lines anymore. All diffs now start with the
- @@ header line directly. Users that rely on the old behaviour can now
- (reliably) read this information from the a_path and b_path properties
- without having to parse these lines manually.
-
1.0.2 - Fixes
=============