From 5be31ae12e699e8f6beb7360398e37ca7af9ba4e Mon Sep 17 00:00:00 2001 From: Jake Stockwin Date: Tue, 12 Oct 2021 14:45:44 +0100 Subject: [PATCH] [release] v0.10.1 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23ea15d6..d5f4b204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.10.1] - 2021-10-12 ### Fixed - The `visualise` function properly uses the _elements_ parameter in order to filter visualised elements. ([#256](https://github.com/jstockwin/py-pdf-parser/pull/256)) +### Changed +- Various dependency updates + ## [0.10.0] - 2021-07-01 - [BREAKING] Changes from using pyqt5 to using tkinter for the visualise tool. This means we don't need the python3-dev as a requirement, and seems to solve endless diff --git a/setup.py b/setup.py index 26bb63b2..ea96788b 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ name="py-pdf-parser", packages=find_packages(), exclude=["tests.*", "tests", "docs", "docs.*"], - version="0.10.0", + version="0.10.1", url="https://github.com/jstockwin/py-pdf-parser", license="BSD", description="A tool to help extracting information from structured PDFs.",