Skip to content

Commit

Permalink
v0.2.0 — Type annotations; drop pre-Python 3.6
Browse files Browse the repository at this point in the history
- Now support only Python 3.6 and up (tested through 3.9) and PyPy3
- Add type annotations
- Renamed the "`size`" parameter of the `read_*` functions to `chunk_size`
- Add API documentation to README
  • Loading branch information
jwodder committed Nov 28, 2020
1 parent c0552c8 commit a1a827e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.2.0 (in development)
-----------------------
v0.2.0 (2020-11-28)
-------------------
- Now support only Python 3.6 and up (tested through 3.9) and PyPy3
- Add type annotations
- Renamed the "`size`" parameter of the `read_*` functions to `chunk_size`
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2017 John Thorvald Wodder II
Copyright (c) 2016-2020 John Thorvald Wodder II

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/linesep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Visit <https://github.com/jwodder/linesep> for more information.
"""

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

0 comments on commit a1a827e

Please sign in to comment.