Skip to content

Commit

Permalink
Fix missing import in bolt.py and bump version to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Oct 13, 2015
1 parent 2b7f80f commit d743188
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion streamparse/storm/bolt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import time
from collections import defaultdict

from six import iteritems, itervalues
from six import iteritems, itervalues, reraise

from .component import Component, Tuple

Expand Down
2 changes: 1 addition & 1 deletion streamparse/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
:organization: Parsely
'''

__version__ = '2.1.1'
__version__ = '2.1.2'
VERSION = tuple(int(x) for x in __version__.split('.'))

6 comments on commit d743188

@tdhopper
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@dan-blanchard
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😬

@mlaprise
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tdhopper you can do the same and now be part of the official commiters...think about it.

@tdhopper
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mlaprise
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep, just realized that :)

@tdhopper
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make a few commits and then move on to the next project :)

Please sign in to comment.