Skip to content

Commit

Permalink
v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Apr 11, 2019
1 parent 4ff7cff commit dd392df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion goodtables/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.2
2.1.3
2 changes: 1 addition & 1 deletion goodtables/checks/duplicate_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def duplicate_header(cells, sample=None):
continue

header_indexes_list = sorted(header_indexes)
first_header_index, other_header_indexes = header_indexes_list[0], header_indexes_list[1:]
first_header_index, other_header_indexes = header_indexes_list[0], header_indexes_list[1:] # noqa
for other_header_index in other_header_indexes:
duplicates = header_indexes - {other_header_index}
message_substitutions = {
Expand Down

2 comments on commit dd392df

@aborruso
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there some release notes?

Thank you

@roll
Copy link
Member Author

@roll roll commented on dd392df Apr 11, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aborruso
Please take a look - https://github.com/frictionlessdata/goodtables-py#changelog
We use:

  • changelog for major/minor notes
  • commit history for fixes

Please sign in to comment.