diff --git a/README.rst b/README.rst index dc1c963..e6a71d2 100644 --- a/README.rst +++ b/README.rst @@ -62,7 +62,7 @@ Otherwise pip will refuse to install ``git-up`` due to ``Access denied`` errors. Python 3 compatibility: ~~~~~~~~~~~~~~~~~~~~~~~ -Python 3.3 and 3.4 are supported. +Python 3.3 and 3.4 are supported :) Options and Configuration ------------------------- @@ -155,6 +155,15 @@ The original ``git-up`` has been written by aanand: Changelog --------- +v1.3.0 (*2015-04-08*) +~~~~~~~~~~~~~~~~~~~~~ + +- Support for Python 3 has been added. Thanks `@r4ts0n `_ + for the `Pull Request `_ + and `@Byron `_ for quickly merging a Pull Request + in `GitPython `_ + and releasing a new version on which this release depends. + v1.2.2 (*2015-02-23*) ~~~~~~~~~~~~~~~~~~~~~ diff --git a/requirements.txt b/requirements.txt index 930f43a..3271e71 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -GitPython==0.3.6 +GitPython==1.0.0 colorama==0.3.3 termcolor==1.1.0 docopt==0.6.2 diff --git a/setup.py b/setup.py index b28a7b8..6246811 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,10 @@ setup( name="git-up", - version="1.2.2", + version="1.3.0", packages=find_packages(exclude=["tests"]), scripts=['PyGitUp/gitup.py'], - install_requires=['GitPython==0.3.6', 'colorama==0.3.3', + install_requires=['GitPython==1.0.0', 'colorama==0.3.3', 'termcolor==1.1.0', 'docopt==0.6.2', 'six==1.9.0'],