From d1b1465f4e80dc08fd210638c05248890c974b35 Mon Sep 17 00:00:00 2001 From: nvbn Date: Tue, 21 Apr 2015 22:31:01 +0200 Subject: [PATCH] Bump to 1.26 --- release.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/release.py b/release.py index b39501a..e22209b 100755 --- a/release.py +++ b/release.py @@ -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) diff --git a/setup.py b/setup.py index c822bb5..d19f72d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages -VERSION = '1.24' +VERSION = '1.26' setup(name='thefuck',