Skip to content

Commit

Permalink
Merge pull request #9 from facelessuser/fix-text
Browse files Browse the repository at this point in the history
Fix text filter.
  • Loading branch information
facelessuser authored Oct 16, 2018
2 parents 39a351d + b520d33 commit 8afba39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/src/markdown/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.0a3

- **FIX**: Text filter was returning old Parser name instead of new Filter name.

## 0.2.0a2

- **NEW**: Incorporate the Decoder class into the filter class.
Expand Down
2 changes: 1 addition & 1 deletion pyspelling/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""`PySpelling` package."""

# (major, minor, micro, release type, pre-release build, post-release build)
version_info = (0, 2, 0, 'alpha', 2, 0)
version_info = (0, 2, 0, 'alpha', 3, 0)


def _version():
Expand Down
2 changes: 1 addition & 1 deletion pyspelling/filters/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
def get_filter():
"""Return the filter."""

return filters.Parser
return filters.Filter

0 comments on commit 8afba39

Please sign in to comment.