Skip to content

Commit

Permalink
v0.4.0 — Splitter classes
Browse files Browse the repository at this point in the history
- Passing a regular expression separator to a `read_*()` function is now deprecated, and support will be removed in version 1.0.
- Added `TerminatedSplitter`, `PrecededSplitter`, `SeparatedSplitter`, & `UniversalNewlineSplitter` classes and `get_newline_splitter()` function for incremental splitting of strings in chunks
- Drop support for Python 3.6
- Moved documentation from README file to a Read the Docs site
  • Loading branch information
jwodder committed Jun 17, 2022
1 parent f8fb602 commit dc1681e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.4.0 (in development)
-----------------------
v0.4.0 (2022-06-17)
-------------------
- Passing a regular expression separator to a `read_*()` function is now
deprecated, and support will be removed in version 1.0.
- Added `TerminatedSplitter`, `PrecededSplitter`, `SeparatedSplitter`, &
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

v0.4.0 (in development)
-----------------------
v0.4.0 (2022-06-17)
-------------------
- Passing a regular expression separator to a ``read_*()`` function is now
deprecated, and support will be removed in version 1.0.
- Added `TerminatedSplitter`, `PrecededSplitter`, `SeparatedSplitter`, &
Expand Down
2 changes: 1 addition & 1 deletion src/linesep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
more information.
"""

__version__ = "0.4.0.dev1"
__version__ = "0.4.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "linesep@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit dc1681e

Please sign in to comment.