Skip to content

Commit

Permalink
Version bump to v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed Dec 12, 2018
1 parent 86b30b1 commit 448d31e
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 55 deletions.
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,12 @@ The original ``git-up`` has been written by aanand:
Changelog
---------

v1.6.1 (*2018-12-12*)
~~~~~~~~~~~~~~~~~~~~~

- Upgrade to click>=7.0.0. Thanks `@Chronial <https://github.com/no-preserve-root>`_
for `Pull Request #87 <https://github.com/msiemens/PyGitUp/pull/87>`_.

v1.6.0 (*2018-10-26*)
~~~~~~~~~~~~~~~~~~~~~

Expand Down
110 changes: 55 additions & 55 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
# coding=utf-8
from setuptools import setup, find_packages

setup(
name="git-up",
version="1.6.0",
packages=find_packages(),
install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7',
'termcolor>=1.1.0', 'click>=7.0.0',
'six>=1.10.0'],

# Tests
test_suite="nose.collector",
tests_require='nose',

# Executable
entry_points={
'console_scripts': [
'git-up = PyGitUp.gitup:run'
]
},

# Additional data
package_data={
'PyGitUp': ['check-bundler.rb'],
'': ['README.rst', 'LICENCE']
},

zip_safe=False,

# Metadata
author="Markus Siemens",
author_email="[email protected]",
description="A python implementation of 'git up'",
license="MIT",
keywords="git git-up",
url="https://github.com/msiemens/PyGitUp",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities"
],

long_description=open('README.rst').read()
)
# coding=utf-8
from setuptools import setup, find_packages

setup(
name="git-up",
version="1.6.1",
packages=find_packages(),
install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7',
'termcolor>=1.1.0', 'click>=7.0.0',
'six>=1.10.0'],

# Tests
test_suite="nose.collector",
tests_require='nose',

# Executable
entry_points={
'console_scripts': [
'git-up = PyGitUp.gitup:run'
]
},

# Additional data
package_data={
'PyGitUp': ['check-bundler.rb'],
'': ['README.rst', 'LICENCE']
},

zip_safe=False,

# Metadata
author="Markus Siemens",
author_email="[email protected]",
description="A python implementation of 'git up'",
license="MIT",
keywords="git git-up",
url="https://github.com/msiemens/PyGitUp",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities"
],

long_description=open('README.rst').read()
)

0 comments on commit 448d31e

Please sign in to comment.