From 453e118ddcc0b2344900583bc80635cf82b91d70 Mon Sep 17 00:00:00 2001 From: Mathias Kende Date: Fri, 17 May 2024 22:14:15 +0200 Subject: [PATCH] Bump version to 1.06 --- Changes | 4 ++-- lib/App/pmarkdown.pm | 4 ++-- lib/Markdown/Perl.pm | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index 8516e39..cc4c6e6 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,11 @@ Revision history for pmarkdown and the Markdown::Perl module. -1.06 - ?? +1.06 - 2024-05-17 - Add support for setting processing hooks. - Add a hook to resolve unresolved link reference. -1.05 - 2024-05-14 +1.05 - 2024-05-16 [Improve the inline_delimiters option] - Document the option. diff --git a/lib/App/pmarkdown.pm b/lib/App/pmarkdown.pm index 36ed2a7..d3929a9 100644 --- a/lib/App/pmarkdown.pm +++ b/lib/App/pmarkdown.pm @@ -5,7 +5,7 @@ use warnings; use Markdown::Perl; -our $VERSION = '1.05'; # Remember to also set the Markdown::Perl version. +our $VERSION = '1.06'; # Remember to also set the Markdown::Perl version. 1; @@ -22,7 +22,7 @@ App::pmarkdown =head1 SYNOPSIS This package is only here to reserve the C name to simplify the -installation of the L markdown processor. +installation of the L program. The documentation for the markdown processor is in the L page. It’s implementation is based on the L library that can be used diff --git a/lib/Markdown/Perl.pm b/lib/Markdown/Perl.pm index 5a95523..0611a2b 100644 --- a/lib/Markdown/Perl.pm +++ b/lib/Markdown/Perl.pm @@ -19,7 +19,7 @@ use Scalar::Util 'blessed'; use parent 'Markdown::Perl::Options'; -our $VERSION = '1.05'; # Remember to also set the App::pmarkdown version. +our $VERSION = '1.06'; # Remember to also set the App::pmarkdown version. our @EXPORT_OK = qw(convert set_options set_mode set_hooks); our %EXPORT_TAGS = (all => \@EXPORT_OK);