commit 45c06be400faf5eb46c1f71b78c61482d793a873
parent 4e72e985bd74b53a5ed505914efcedae02420469
Author: krasjet
Date: 2023-04-20 22:09Z
add more debug info for workflow
Diffstat:
5 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
@@ -29,6 +29,13 @@ jobs:
- name: install dependencies
shell: bash
run: poetry install
+ - name: print debug info
+ shell: bash
+ run: |
+ poetry run pdfxmeta -V
+ poetry run pdftocgen -V
+ poetry run pdftocio -V
+ tree
- name: run tests
shell: bash
run: make test
diff --git a/pdftocgen/__init__.py b/pdftocgen/__init__.py
@@ -1,3 +1,3 @@
"""Generate table of contents for pdf based on a recipe file"""
-__version__ = '1.3.2'
+__version__ = '1.3.3'
diff --git a/pdftocio/__init__.py b/pdftocio/__init__.py
@@ -1,3 +1,3 @@
"""Manipulating the table of contents of a pdf"""
-__version__ = '1.3.2'
+__version__ = '1.3.3'
diff --git a/pdfxmeta/__init__.py b/pdfxmeta/__init__.py
@@ -1,5 +1,5 @@
"""Extract metadata (fonts, bounding box) for a string in a pdf"""
-__version__ = '1.3.2'
+__version__ = '1.3.3'
from .pdfxmeta import extract_meta, dump_meta, dump_toml
diff --git a/pyproject.toml b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pdf.tocgen"
-version = "1.3.2"
+version = "1.3.3"
description = "Automatically generate table of contents for pdf files"
authors = ["krasjet"]
license = "GPL-3.0-or-later"