From e6c2fa7bceda0bb52b1a93fed7aa8de5830c5efc Mon Sep 17 00:00:00 2001 From: damien clochard Date: Fri, 17 Mar 2023 08:55:38 +0100 Subject: [PATCH] Release 23.03 --- .gitignore | 1 + CHANGELOG.md | 9 +++++++ NEWS.md | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 76 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4ae6059..5522b35 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ tmp-* tests/output/ tests/*.bats.log missfont.log +.panda diff --git a/CHANGELOG.md b/CHANGELOG.md index 630d2fd..0e55dee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,15 @@ __Changes__ +* python-is-python3 +* pandoc-latex-admonition is deprecated +* FIX #263 remove soulutf8 +* update pandoc-cover +* update pandoc-jinja +* update pandoc-run-postgres +* [latex] Add pdfcol package + + 23.01 - Maintenance Release ------------------------------------------------------------------------------- diff --git a/NEWS.md b/NEWS.md index 3ef7f0c..37b0bab 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,73 @@ +Pandocker 23.03: Maintenance Version +================================================================================ + +Eymoutiers, Mars 17, 2023 + + +What is this ? +-------------------------------------------------------------------------------- + +Pandocker is a docker image containing a complete document production toolchain +based on `pandoc` with filters, templates, fonts, and the latex bazaar + +It allows you to generate slides and documents without installing the required +depencies on your machine. It is also very usefull to integrate pandoc into +a CI workflow such as Github Actions, Gitlab Pipelines, etc. + +For instance to generate an EPUB file from a markdown source, you can simply +type: + +``` +docker run --rm -v `pwd`:/pandoc dalibo/pandocker test.md -o test.epub +``` + +This image is available under BSD Licence and it has 4 main tags: + +* `stable` should be used in production +* `stable-full` for non-european languages +* `latest` and `latest-full` are the development versions + +You can also retrieve older versions by their version number: +`dalibo/pandocker:19.11`, `dalibo/pandocker:21.02-full`, etc. + +For more details : + +* Github : +* Docker Hub : + + +Maintenance release +-------------------------------------------------------------------------------- + +This new version brings minor updates and prepares the ground before important +changes. + + +How to upgrade +-------------------------------------------------------------------------------- + +```console +docker pull dalibo/pandocker:stable +``` + + +How to contribute +-------------------------------------------------------------------------------- + +Pandocker is an open project, contributions are welcome. + +If you want to help, you can find a list of "Junior Jobs" here: + + + + +---- + Pandocker 23.01: Maintenance Version ================================================================================ -Eymoutiers, Janvier 23, 2022 +Eymoutiers, Janvier 23, 2023 What is this ?