Skip to content

Commit

Permalink
Bump to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaska committed Apr 7, 2015
1 parent 1f1a46b commit 582b0c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
@@ -1,5 +1,9 @@
## Release History

### 0.0.4 (2015-04-07)

* Fix an issue during egg_info when pandoc is not installed

### 0.0.3 (2015-04-06)

* Plugin will warn, but not fail when providing bogus --trello-cfg options
Expand Down
2 changes: 1 addition & 1 deletion pytest_trello/__init__.py
@@ -1,3 +1,3 @@
__version__ = '0.0.3'
__version__ = '0.0.4'
__author__ = "James Laska"
__author_email__ = "<jlaska@ansible.com>"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -99,7 +99,7 @@ def long_description(*paths):
# attempt to import pandoc
try:
import pypandoc
except ImportError:
except ImportError, OSError:
return result

# attempt md -> rst conversion
Expand Down

0 comments on commit 582b0c7

Please sign in to comment.