Bump to v0.5.18

This commit is contained in:
Jeremy Singer-Vine
2020-04-01 23:36:21 -04:00
parent d68e8813be
commit dead89c86d
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. Currently g
The format is based on [Keep a Changelog](http://keepachangelog.com/).
## [0.5.18] — 2020-04-01
### Changed
- Allow `rect` and `curve` objects also to be passed to "explicit_..._lines" setting when table-finding. (And disallow other types of dicts to be passed.)
### Fixed
- Fix `utils.extract_text` bug introduced in prior version
## [0.5.17] — 2020-04-01
### Fixed
- Fix and simplify obj-in-bbox logic (see commit 25672961)
+1 -1
View File
@@ -1,4 +1,4 @@
# PDFPlumber `v0.5.17`
# PDFPlumber `v0.5.18`
Plumb a PDF for detailed information about each text character, rectangle, and line. Plus: Table extraction and visual debugging.
+1 -1
View File
@@ -1,2 +1,2 @@
version_info = (0, 5, 17)
version_info = (0, 5, 18)
__version__ = '.'.join(map(str, version_info))