Skip to content

Commit

Permalink
Prep for 3.0.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ptmcg committed May 5, 2022
1 parent a73af6a commit 9c6f1fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
Change Log
==========

Version 3.0.9 - (in development)
Version 3.0.9 -
---------------
- Added Unicode set `BasicMultilingualPlane` (may also be referenced
as `BMP`) representing the Basic Multilingual Plane (Unicode
characters up to code point 65535). Can be used to parse
most language characters, but omits emojis, wingdings, etc.
Raised in discussion with Dave Tapley (issue #392).

- To address mypy confusion of pyparsing.Optional and typing.Optional
- To address mypy confusion of `pyparsing.Optional` and `typing.Optional`
resulting in `error: "_SpecialForm" not callable` message
reported in issue #365, fixed the import in exceptions.py. Nice
sleuthing by Iwan Aucamp and Dominic Davis-Foster, thank you!
Expand Down
2 changes: 1 addition & 1 deletion pyparsing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __repr__(self):


__version_info__ = version_info(3, 0, 9, "final", 0)
__version_time__ = "30 Apr 2022 15:36 UTC"
__version_time__ = "05 May 2022 07:02 UTC"
__version__ = __version_info__.__version__
__versionTime__ = __version_time__
__author__ = "Paul McGuire <ptmcg.gm+pyparsing@gmail.com>"
Expand Down

0 comments on commit 9c6f1fe

Please sign in to comment.