1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00

Bump to 1.26

This commit is contained in:
nvbn 2015-04-21 22:31:01 +02:00
parent 564eb55262
commit d1b1465f4e
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ lines = list(get_new_setup_py_lines())
with open('setup.py', 'w') as sf:
sf.writelines(lines)
call('git pull', shell=True)
call('git commit -am "Bump to {}"'.format(version), shell=True)
call('git tag {}'.format(version), shell=True)
call('git push', shell=True)

View File

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
VERSION = '1.24'
VERSION = '1.26'
setup(name='thefuck',