Skip to content

Commit 448d31e

Browse files
committed
Version bump to v1.6.1
1 parent 86b30b1 commit 448d31e

File tree

2 files changed

+61
-55
lines changed

2 files changed

+61
-55
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,12 @@ The original ``git-up`` has been written by aanand:
167167
Changelog
168168
---------
169169

170+
v1.6.1 (*2018-12-12*)
171+
~~~~~~~~~~~~~~~~~~~~~
172+
173+
- Upgrade to click>=7.0.0. Thanks `@Chronial <https://github.com/no-preserve-root>`_
174+
for `Pull Request #87 <https://github.com/msiemens/PyGitUp/pull/87>`_.
175+
170176
v1.6.0 (*2018-10-26*)
171177
~~~~~~~~~~~~~~~~~~~~~
172178

setup.py

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
1-
# coding=utf-8
2-
from setuptools import setup, find_packages
3-
4-
setup(
5-
name="git-up",
6-
version="1.6.0",
7-
packages=find_packages(),
8-
install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7',
9-
'termcolor>=1.1.0', 'click>=7.0.0',
10-
'six>=1.10.0'],
11-
12-
# Tests
13-
test_suite="nose.collector",
14-
tests_require='nose',
15-
16-
# Executable
17-
entry_points={
18-
'console_scripts': [
19-
'git-up = PyGitUp.gitup:run'
20-
]
21-
},
22-
23-
# Additional data
24-
package_data={
25-
'PyGitUp': ['check-bundler.rb'],
26-
'': ['README.rst', 'LICENCE']
27-
},
28-
29-
zip_safe=False,
30-
31-
# Metadata
32-
author="Markus Siemens",
33-
author_email="markus@m-siemens.de",
34-
description="A python implementation of 'git up'",
35-
license="MIT",
36-
keywords="git git-up",
37-
url="https://github.com/msiemens/PyGitUp",
38-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
39-
classifiers=[
40-
"Development Status :: 5 - Production/Stable",
41-
"Environment :: Console",
42-
"Intended Audience :: Developers",
43-
"License :: OSI Approved :: MIT License",
44-
"Programming Language :: Python :: 2",
45-
"Programming Language :: Python :: 2.7",
46-
"Programming Language :: Python :: 3",
47-
"Programming Language :: Python :: 3.4",
48-
"Programming Language :: Python :: 3.5",
49-
"Programming Language :: Python :: 3.6",
50-
"Topic :: Software Development :: Version Control",
51-
"Topic :: Utilities"
52-
],
53-
54-
long_description=open('README.rst').read()
55-
)
1+
# coding=utf-8
2+
from setuptools import setup, find_packages
3+
4+
setup(
5+
name="git-up",
6+
version="1.6.1",
7+
packages=find_packages(),
8+
install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7',
9+
'termcolor>=1.1.0', 'click>=7.0.0',
10+
'six>=1.10.0'],
11+
12+
# Tests
13+
test_suite="nose.collector",
14+
tests_require='nose',
15+
16+
# Executable
17+
entry_points={
18+
'console_scripts': [
19+
'git-up = PyGitUp.gitup:run'
20+
]
21+
},
22+
23+
# Additional data
24+
package_data={
25+
'PyGitUp': ['check-bundler.rb'],
26+
'': ['README.rst', 'LICENCE']
27+
},
28+
29+
zip_safe=False,
30+
31+
# Metadata
32+
author="Markus Siemens",
33+
author_email="markus@m-siemens.de",
34+
description="A python implementation of 'git up'",
35+
license="MIT",
36+
keywords="git git-up",
37+
url="https://github.com/msiemens/PyGitUp",
38+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
39+
classifiers=[
40+
"Development Status :: 5 - Production/Stable",
41+
"Environment :: Console",
42+
"Intended Audience :: Developers",
43+
"License :: OSI Approved :: MIT License",
44+
"Programming Language :: Python :: 2",
45+
"Programming Language :: Python :: 2.7",
46+
"Programming Language :: Python :: 3",
47+
"Programming Language :: Python :: 3.4",
48+
"Programming Language :: Python :: 3.5",
49+
"Programming Language :: Python :: 3.6",
50+
"Topic :: Software Development :: Version Control",
51+
"Topic :: Utilities"
52+
],
53+
54+
long_description=open('README.rst').read()
55+
)

0 commit comments

Comments
 (0)