summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-06 16:09:47 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-06 16:09:47 +0100
commit68f8a43d1b643318732f30ee1cd75e1d315a4537 (patch)
tree1b0b655512243a41ce539e775d375509e912f5f1
parentc8cf69b6f8bd73525b5375bd73f1fc79ae322a82 (diff)
downloadgitpython-68f8a43d1b643318732f30ee1cd75e1d315a4537.tar.gz
Bumped version to 0.3.4
-rw-r--r--VERSION2
-rw-r--r--doc/source/changes.rst2
-rwxr-xr-xsetup.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 1c09c74e..42045aca 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.3.3
+0.3.4
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index bb301f87..b7479e4f 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -2,7 +2,7 @@
Changelog
=========
-0.3.4 - python 3 support
+0.3.4 - Python 3 Support
========================
* Internally, hexadecimal SHA1 are treated as ascii encoded strings. Binary SHA1 are treated as bytes.
* Id attribute of Commit objects is now `hexsha`, instead of `binsha`. The latter makes no sense in python 3 and I see no application of it anyway besides its artificial usage in test cases.
diff --git a/setup.py b/setup.py
index e1f77058..bdd4a423 100755
--- a/setup.py
+++ b/setup.py
@@ -112,8 +112,8 @@ GitPython is a python library used to interact with Git repositories""",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
- # "Programming Language :: Python :: 3",
- # "Programming Language :: Python :: 3.3",
- # "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4",
]
)