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);