Skip to content

Commit

Permalink
release: v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Apr 25, 2019
1 parent edad18b commit 3988f4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@

```python
corpus, metadata = cophi.corpus(directory="british-fiction-corpus",
pathname_pattern="**/*.txt",
filepath_pattern="**/*.txt",
encoding="utf-8",
lowercase=True,
token_pattern=r"\p{L}+\p{P}?\p{L}+")
Expand Down
2 changes: 1 addition & 1 deletion src/cophi/__init__.py
Expand Up @@ -5,7 +5,7 @@
```
corpus, metadata = cophi.corpus(directory="british-fiction-corpus",
pathname_pattern="**/*.txt",
filepath_pattern="**/*.txt",
encoding="utf-8",
lowercase=True,
token_pattern=r"\p{L}+\p{P}?\p{L}+")
Expand Down
2 changes: 1 addition & 1 deletion src/cophi/__version__.py
@@ -1,3 +1,3 @@
VERSION = (1, 3, 0)
VERSION = (1, 3, 1)

__version__ = ".".join(map(str, VERSION))

0 comments on commit 3988f4f

Please sign in to comment.