From ff2ac019d93360b2d1c9198a26d065b3a49d3d63 Mon Sep 17 00:00:00 2001 From: Mathias Kende Date: Fri, 5 Apr 2024 21:49:20 +0200 Subject: [PATCH] Bump to version 1.01 --- Changes | 2 +- lib/App/pmarkdown.pm | 2 +- lib/Markdown/Perl.pm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index c1e2fd8..8d239d5 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for pmarkdown and the Markdown::Perl module. -1.01 - ?? +1.01 - 2024-04-05 - Deactivate the support for setext headings in pmarkdown default syntax. - Remove a copy of the input Markdown when using the functional interface. diff --git a/lib/App/pmarkdown.pm b/lib/App/pmarkdown.pm index b3b9526..39cfb19 100644 --- a/lib/App/pmarkdown.pm +++ b/lib/App/pmarkdown.pm @@ -5,7 +5,7 @@ use warnings; use Markdown::Perl; -our $VERSION = $Markdown::Perl::VERSION; ## no critic (ProhibitComplexVersion,RequireConstantVersion) +our $VERSION = '1.01'; # Remember to also set the Markdown::Perl version. 1; diff --git a/lib/Markdown/Perl.pm b/lib/Markdown/Perl.pm index 8b53466..743fe92 100644 --- a/lib/Markdown/Perl.pm +++ b/lib/Markdown/Perl.pm @@ -17,7 +17,7 @@ use Scalar::Util 'blessed'; use parent 'Markdown::Perl::Options'; -our $VERSION = '1.00'; +our $VERSION = '1.01'; # Remember to also set the App::pmarkdown version. our @EXPORT_OK = qw(convert set_options); our %EXPORT_TAGS = (all => \@EXPORT_OK);