Skip to content

Commit

Permalink
Merge branch 'hotfix/0.3.6'
Browse files Browse the repository at this point in the history
* hotfix/0.3.6:
  RLS: HISTORY.rst, __init__.py, pyline.py, setup.py: __version__ = '0.3.6'
  BUG: pyline.py: #!/usr/bin/env python2
  • Loading branch information
westurner committed Dec 21, 2015
2 parents 065797d + a463d39 commit 445c089
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
History
=========

0.3.6 (2015-12-21)
++++++++++++++++++++
* BUG: pyline.py: #!/usr/bin/env python2 [9729816]

0.3.5 (2015-05-24)
+++++++++++++++++++
* BUG,DOC: pyline.py: set default regex_options to '', optparse helpstrings [fa9e9cb]
Expand Down
2 changes: 1 addition & 1 deletion pyline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = '0.3.5'
__version__ = '0.3.6'

import pyline

Expand Down
4 changes: 3 additions & 1 deletion pyline/pyline.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
from __future__ import print_function
"""
Expand Down Expand Up @@ -71,6 +71,8 @@ def backwards(line):
"""

__version__ = version = "0.3.6"

import cgi
import csv
import collections
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def build_long_description():

setup(
name='pyline',
version='0.3.5',
version='0.3.6',
description=(
'A grep-like, sed-like command-line tool for line-based '
'processing in Python.'),
Expand Down

0 comments on commit 445c089

Please sign in to comment.