Skip to content

Commit c9d6d18

Browse files
committed
0.2.0
1 parent f4f97f1 commit c9d6d18

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

README.release.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Making a Release
2+
================
3+
4+
1. Commit all other changes
5+
2. Update the version string in both places:
6+
- motifapi/__init__.py (__version__ = '0.2.X')
7+
- setup.py (version='0.2.X')
8+
3. Commit the version change: git commit -am "0.2.X"
9+
4. Create a tag: git tag -a v0.2.X -m "0.2.X"
10+
5. Push the commit and tag together: git push origin master --tags --atomic
11+
12+
The CI workflow builds an sdist+wheel and publishes to PyPI on any
13+
tag push matching v*. Deb packages are also built for matching tags.

motifapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.2.00'
1+
__version__ = '0.2.0'
22

33
from .api import MotifError, MotifApiError, MotifApi
44
from .schedule import datetime_to_cron

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
license='BSD',
88
description='Python interface to Motif recording systems',
99
long_description='Python interface to Motif recording systems',
10-
version='0.2.00',
10+
version='0.2.0',
1111
author='John Stowers',
1212
author_email='john@loopbio.com',
1313
packages=['motifapi'],

0 commit comments

Comments
 (0)