diff --git a/RELEASING.md b/RELEASING.md index 9cd8f8a..e4ed249 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -6,11 +6,11 @@ git checkout master edit pylast/__init__.py setup.py git add pylast/__init__.py setup.py -git commit -m "Release 1.3.0" +git commit -m "Release 1.5.0" ``` * [ ] Tag the last commit with the version number: ```bash -git tag -a 1.3.0 -m "Release 1.3.0" +git tag -a 1.5.0 -m "Release 1.5.0" ``` * [ ] Release on PyPI: ```bash @@ -20,9 +20,12 @@ python setup.py sdist --format=gztar upload * [ ] Push: `git push` * [ ] Push tags: `git push --tags` * [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new + * Tag: Pick existing tag "1.5.0" + * Title: "Release 1.5.0" * [ ] Update develop branch from master: ```bash git checkout develop git merge master --ff-only git push ``` + * [ ] Check installation: `pip install -U pylast` diff --git a/pylast/__init__.py b/pylast/__init__.py index fe9e2a1..3df48b3 100644 --- a/pylast/__init__.py +++ b/pylast/__init__.py @@ -32,7 +32,7 @@ import warnings import re import six -__version__ = '1.3.0' +__version__ = '1.4.0' __author__ = 'Amr Hassan, hugovk' __copyright__ = "Copyright (C) 2008-2010 Amr Hassan, 2013-2015 hugovk" __license__ = "apache2" diff --git a/setup.py b/setup.py index aa93c17..adbdc89 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="pylast", - version="1.3.0", + version="1.4.0", author="Amr Hassan ", install_requires=['six'], tests_require=['mock', 'pytest', 'coverage', 'pep8', 'pyyaml', 'pyflakes'],