Skip to content

Commit

Permalink
Merge branch 'release/0.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
mfcovington committed Jan 8, 2016
2 parents 219f439 + 7df8b98 commit b0be098
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 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.1.4
current_version = 0.1.5
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.1.5 2016-01-08

- Add exception for publications that do not have month information (Thanks to Sasha Cuerda!)


0.1.4 2015-12-24

- Resolve PEP8 errors
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ Usage
ABSTRACT:
Diverse life forms have evolved internal clocks enabling them to monitor time and thereby anticipate the daily environmental changes caused by Earth's rotation. The plant circadian clock regulates expression of about one-third of the Arabidopsis genome, yet the physiological relevance of this regulation is not fully understood. Here we show that the circadian clock, acting with hormone signals, provides selective advantage to plants through anticipation of and enhanced defense against herbivory. We found that cabbage loopers (Trichoplusia ni) display rhythmic feeding behavior that is sustained under constant conditions, and plants entrained in light/dark cycles coincident with the entrainment of the T. ni suffer only moderate tissue loss due to herbivory. In contrast, plants entrained out-of-phase relative to the insects are significantly more susceptible to attack. The in-phase entrainment advantage is lost in plants with arrhythmic clocks or deficient in jasmonate hormone; thus, both the circadian clock and jasmonates are required. Circadian jasmonate accumulation occurs in a phase pattern consistent with preparation for the onset of peak circadian insect feeding behavior, providing evidence for the underlying mechanism of clock-enhanced herbivory resistance. Furthermore, we find that salicylate, a hormone involved in biotrophic defense that often acts antagonistically to jasmonates, accumulates in opposite phase to jasmonates. Our results demonstrate that the plant circadian clock provides a strong physiological advantage by performing a critical role in Arabidopsis defense."

*Version 0.1.4*
*Version 0.1.5*
2 changes: 1 addition & 1 deletion pubmed_lookup/pubmed_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def set_pub_year_month_day(self, xml_dict):
try:
self.month = datetime.datetime.strptime(
month_short, "%b").month
except ValueError:
except (ValueError, TypeError) as e:
self.month = ''

else:
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.1.4',
version='0.1.5',
packages=['pubmed_lookup'],
test_suite='pubmed_lookup.test_pubmed_lookup',
include_package_data=True,
Expand Down

0 comments on commit b0be098

Please sign in to comment.