# HG changeset patch # User G. Eyaeb # Date 1606782415 -28800 # Tue Dec 01 08:26:55 2020 +0800 # Node ID 6c2eb616b62ee4983ec2980b33f9d08093c1009d # Parent 271545a1a052c2637b369cd1dee5951fc9c20006 Prepare release 0.1.0.1 diff --git a/CHANGELOG.md b/CHANGELOG.md --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Revision history for pdftotext +## 0.1.0.1 -- 2020-12-01 + +* Require C++11 (solves [#3](https://todo.sr.ht/~geyaeb/haskell-pdftotext/3), using on MacOS) +* Prevent deletion of document pointer before its pages (solves [#4](https://todo.sr.ht/~geyaeb/haskell-pdftotext/4), segmentation faults) + ## 0.1.0.0 -- 2020-06-18 * Added executable `pdftotext.hs` diff --git a/pdftotext.cabal b/pdftotext.cabal --- a/pdftotext.cabal +++ b/pdftotext.cabal @@ -1,7 +1,7 @@ cabal-version: >=1.10 name: pdftotext -version: 0.1.0.0 +version: 0.1.0.1 synopsis: Extracts text from PDF using poppler description: The @pdftotext@ package provides functions for extraction of plain text from PDF documents. It uses C++ library [Poppler](https://poppler.freedesktop.org/), which is required to be installed in the system. Output of Haskell @pdftotext@ library is identical to output of Poppler's tool @pdftotext@. homepage: https://sr.ht/~geyaeb/haskell-pdftotext/