Skip to content

Commit aa3578f

Browse files
committed
Version bump to v1.3.0
1 parent c238846 commit aa3578f

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

README.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Otherwise pip will refuse to install ``git-up`` due to ``Access denied`` errors.
6262
Python 3 compatibility:
6363
~~~~~~~~~~~~~~~~~~~~~~~
6464

65-
Python 3.3 and 3.4 are supported.
65+
Python 3.3 and 3.4 are supported :)
6666

6767
Options and Configuration
6868
-------------------------
@@ -155,6 +155,15 @@ The original ``git-up`` has been written by aanand:
155155
Changelog
156156
---------
157157

158+
v1.3.0 (*2015-04-08*)
159+
~~~~~~~~~~~~~~~~~~~~~
160+
161+
- Support for Python 3 has been added. Thanks `@r4ts0n <https://github.com/r4ts0n>`_
162+
for the `Pull Request <https://github.com/msiemens/PyGitUp/pull/23>`_
163+
and `@Byron <https://github.com/Byron>`_ for quickly merging a Pull Request
164+
in `GitPython <https://github.com/gitpython-developers/GitPython>`_
165+
and releasing a new version on which this release depends.
166+
158167
v1.2.2 (*2015-02-23*)
159168
~~~~~~~~~~~~~~~~~~~~~
160169

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GitPython==0.3.6
1+
GitPython==1.0.0
22
colorama==0.3.3
33
termcolor==1.1.0
44
docopt==0.6.2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
setup(
55
name="git-up",
6-
version="1.2.2",
6+
version="1.3.0",
77
packages=find_packages(exclude=["tests"]),
88
scripts=['PyGitUp/gitup.py'],
9-
install_requires=['GitPython==0.3.6', 'colorama==0.3.3',
9+
install_requires=['GitPython==1.0.0', 'colorama==0.3.3',
1010
'termcolor==1.1.0', 'docopt==0.6.2',
1111
'six==1.9.0'],
1212

0 commit comments

Comments
 (0)