Skip to content

Commit

Permalink
v0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
kinverarity1 committed Sep 14, 2018
1 parent 1d36ae3 commit 2911da1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# List of changes

- Fix #252 (removing case sensitivity in index_unit checks)
- Fix #249 (fix bug producing df without converting to floats)
- Attempt to fix Lasso classification on GitHub

## Version 0.21

- Fix #236 and #237 (can now read ASCII in ~Data section)
Expand Down Expand Up @@ -84,7 +88,7 @@ Version 0.14 and 0.15 skipped due to broken PyPI upload.
## Version 0.11

- Reorganise code into modules
- various
- various

## Version 0.10

Expand Down
6 changes: 3 additions & 3 deletions 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.21'
__version__ = '0.22'


def read(file_ref, **kwargs):
Expand All @@ -22,10 +22,10 @@ def read(file_ref, **kwargs):
are currently supported.
Arguments:
file_ref (file-like object, str): either a filename, an open file
file_ref (file-like object, str): either a filename, an open file
object, or a string containing the contents of a file.
Returns:
Returns:
A LASFile object representing the file -- see above
There are a number of optional keyword arguments that can be passed to this
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.21'
__version__ = '0.22'

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

0 comments on commit 2911da1

Please sign in to comment.