Skip to content

Commit

Permalink
Update version to v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tell-k committed Nov 17, 2015
1 parent 5af06d0 commit 68db143
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,17 @@ Contributors

Thanks.

* podhmo
* @podhmo
* @furi

History
=======

0.1.2(Nov 18, 2015)
---------------------

* Fixed escape bug. `#2 <https://github.com/tell-k/csquery/pull/2>`_.

0.1.1(Nov 6, 2015)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion csquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
"""
from __future__ import division, print_function, absolute_import, unicode_literals # NOQA

__version__ = '0.1.1'
__version__ = '0.1.2'
1 change: 1 addition & 0 deletions tests/test_structured.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def _call_fut(self, *args, **kwargs):

def test_it(self):
assert r"test\'test" == self._call_fut("test'test")
assert r"\'test\'test\'" == self._call_fut("'test'test'")
assert r"test\\test" == self._call_fut(r"test\test")


Expand Down

0 comments on commit 68db143

Please sign in to comment.