Skip to content

Commit

Permalink
v0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
kinverarity1 committed Jun 9, 2018
1 parent bd45818 commit 8d0db5a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# List of changes

## Version 0.21

- Fix #236 and #237 (can now read ASCII in ~Data section)
- Fix #239 (Petrel can't read lasio output)

## Version 0.20

- Fix #233 (pickling error lost Curve.data during multiprocessing)
Expand Down
2 changes: 1 addition & 1 deletion lasio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .excel import ExcelConverter


__version__ = '0.20'
__version__ = '0.21'


def read(file_ref, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
with open('README.md') as f:
long_description = f.read()

__version__ = '0.20'
__version__ = '0.21'

with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), "r") as f:
requirements = f.read().splitlines()
Expand Down

0 comments on commit 8d0db5a

Please sign in to comment.