Skip to content

Commit

Permalink
Release 1.13; changes macro plugin functionality such that it applies…
Browse files Browse the repository at this point in the history
… only to file-based fields.
  • Loading branch information
coddingtonbear committed Jul 17, 2015
1 parent e585a82 commit 3bb2a7f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.13.0
------

* Changes functionality of "Macro Plugins" to apply only to file-based
fields. This will prevent misbehaving macros from making the general
field file from becoming conflicted.

1.12.0
------

Expand Down
2 changes: 1 addition & 1 deletion jirafs/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.12.1'
__version__ = '1.13'
1 change: 1 addition & 0 deletions jirafs/cmdline.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import argparse

import codecs
import logging
import os
Expand Down
3 changes: 3 additions & 0 deletions jirafs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@ def get_jira(domain=None, config=None):
else:
login_data['verify'] = value

# Prevent python-jira from checking to see if its out of date.
login_data['check_update'] = True

basic_auth = (
login_data.pop('username'),
login_data.pop('password'),
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jira==0.47
jira>=0.50
six>=1.9.0
blessings>=1.5.1,<1.6.0
ipdb>=0.8,<1.0
Expand Down

0 comments on commit 3bb2a7f

Please sign in to comment.