From 2aba976d917d4160a33fd861bd1463ae5ec7065a Mon Sep 17 00:00:00 2001 From: Charles Brunet Date: Fri, 21 Apr 2023 16:11:20 -0400 Subject: [PATCH] update changelog and bump version --- .github/workflows/build_and_test.yml | 4 ++-- docs/changelog.rst | 9 ++++++++- meson.build | 6 +++--- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 917f909..1c3e063 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - poppler-version: [poppler-0.26.0, poppler-22.04.0, poppler-23.03.0] #, master] + poppler-version: [poppler-0.26.0, poppler-22.04.0, poppler-23.04.0] #, master] steps: - name: Install dependencies run: sudo apt-get install libopenjp2-7-dev libboost-dev @@ -61,7 +61,7 @@ jobs: matrix: os: [ubuntu-22.04] python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] - poppler-version: [poppler-0.26.0, poppler-22.04.0, poppler-23.03.0] #, master] + poppler-version: [poppler-0.26.0, poppler-22.04.0, poppler-23.04.0] #, master] include: - python-version: '3.8' poppler-version: system diff --git a/docs/changelog.rst b/docs/changelog.rst index 28b773e..e032431 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,14 @@ Changelog ========= -0.4.0 (2023-04-21) +0.4.1 (2023-04-21) +------------------ + +- Fix non-pure build for meson-python (:issue:`74` / :pr:`75`) +- Fix build on Mac OS (:issue:`76` / :pr:`77`) +- Tested with Python 3.11 and Poppler 23.04.0 + +0.4.0 (2023-03-21) ------------------ - Minimal supported Python version is now 3.7 diff --git a/meson.build b/meson.build index d4a6993..c1ac57a 100644 --- a/meson.build +++ b/meson.build @@ -1,10 +1,10 @@ project( 'python-poppler', 'cpp', - version: '0.4.0', + version: '0.4.1', license: 'GNU General Public License v2 (GPLv2)', - # license_files: 'LICENSE.txt', - meson_version: '>=1.0.0', + license_files: 'LICENSE.txt', + meson_version: '>=1.1.0', default_options : ['cpp_std=c++11'] )