Skip to content

Commit

Permalink
re-introduced backwards compatibility for dsv functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Dec 22, 2017
1 parent 43a53f1 commit 3af1626
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 2.0.1

Added back in backwards compatibility for the dsv functionality.


## 2.0.0

Removed
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='clldutils',
version='2.0.0',
version='2.0.1',
description='Utilities for clld apps',
long_description=open("README.rst").read(),
author='Robert Forkel',
Expand Down
2 changes: 1 addition & 1 deletion src/clldutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import unicode_literals

__version__ = '2.0.0'
__version__ = '2.0.1'
5 changes: 5 additions & 0 deletions src/clldutils/dsv.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# coding: utf8
from __future__ import unicode_literals, print_function, division

from csvw.dsv import *
from csvw.dsv import reader

0 comments on commit 3af1626

Please sign in to comment.