Skip to content

Commit 63b7f3f

Browse files
committed
v0.7.2 release commit
1 parent 61bae17 commit 63b7f3f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased][unreleased]
44

5+
## [v0.7.2][]
6+
7+
This is a very minor release that just fixes one bug introduced in v0.7.1.
8+
59
### Fixed
610

711
* ACE interface no longer gives unnecessary error message when reading the run
@@ -631,6 +635,7 @@ information about changes, except for
631635
[commit messages](../../commits/v0.2).
632636

633637
[unreleased]: ../../tree/develop
638+
[v0.7.2]: ../../releases/tag/v0.7.2
634639
[v0.7.1]: ../../releases/tag/v0.7.1
635640
[v0.7.0]: ../../releases/tag/v0.7.0
636641
[v0.6.2]: ../../releases/tag/v0.6.2

delphin/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# the warehouse project:
44
# https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py
55

6-
__version__ = '0.7.1'
6+
__version__ = '0.7.2'
77
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()
88

99
__title__ = 'PyDelphin'

delphin/itsdb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def select(self, cols, mode='list'):
414414
*mode* parameter.
415415
416416
Args:
417-
cols: an interable of Field (column) names
417+
cols: an iterable of Field (column) names
418418
mode: how to return the data
419419
"""
420420
if isinstance(cols, stringtypes):
@@ -501,7 +501,7 @@ def select(self, arg, cols=None, mode='list'):
501501
Args:
502502
arg: a table name, if *cols* is specified, otherwise a data
503503
specifier
504-
cols: an interable of Field (column) names
504+
cols: an iterable of Field (column) names
505505
mode: how to return the data
506506
"""
507507
if cols is None:

0 commit comments

Comments
 (0)