Skip to content

Commit

Permalink
Merge branch 'hotfix/0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mfcovington committed Jan 22, 2016
2 parents fe68c76 + 32132a0 commit 487ee1d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-dev(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}-dev{dev}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Revision History
================

0.2.1 2016-01-22

- Change import of ``pubmed_lookup.command_line`` that was causing Travis CI to fail


0.2.0 2016-01-22

- Create command-line tool (``pubmed-citation``) to quickly retrieve citations for PubMed IDs/URLS
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,4 @@ pubmed-url
http://dx.doi.org/10.1073/pnas.1116368109


*Version 0.2.0*
*Version 0.2.1*
3 changes: 1 addition & 2 deletions pubmed_lookup/test_pubmed_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import unittest
from io import StringIO

import command_line
from pubmed_lookup import Publication, PubMedLookup
from pubmed_lookup import command_line, Publication, PubMedLookup


class TestConsole(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(*paths):

setup(
name='pubmed-lookup',
version='0.2.0',
version='0.2.1',
packages=['pubmed_lookup'],
test_suite='pubmed_lookup.test_pubmed_lookup',
include_package_data=True,
Expand Down

0 comments on commit 487ee1d

Please sign in to comment.