Skip to content

Commit

Permalink
Bump the version to 1.05
Browse files Browse the repository at this point in the history
  • Loading branch information
mkende committed May 16, 2024
1 parent 5bd0de0 commit 5a8683a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
20 changes: 11 additions & 9 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
Revision history for pmarkdown and the Markdown::Perl module.

1.05 - ??

- Improve the inline_delimiters option
- Document the option.
- Set the correct value for the original markdown syntax.
- Support the case where a delimiter does not have a repeated variant.
- Validate the value of the option.
- Allow to pass a class name to insert an HTML <span>, rather than a
specific tag.
1.05 - 2024-05-14

[Improve the inline_delimiters option]
- Document the option.
- Set the correct value for the original markdown syntax.
- Support the case where a delimiter does not have a repeated variant.
- Validate the value of the option.
- Allow to pass a class name to insert an HTML <span>, rather than a
specific tag.

[Other changes]
- Decode the command line argument strings according to the current locale and
decode/encode the standard input/output if we are connected to a tty.

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@
^nytprof/
^.*\.code-workspace$
^Syntax\.md$
^\.vscode/
2 changes: 1 addition & 1 deletion lib/App/pmarkdown.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use Markdown::Perl;

our $VERSION = '1.04'; # Remember to also set the Markdown::Perl version.
our $VERSION = '1.05'; # Remember to also set the Markdown::Perl version.

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/Markdown/Perl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use Scalar::Util 'blessed';

use parent 'Markdown::Perl::Options';

our $VERSION = '1.04'; # Remember to also set the App::pmarkdown version.
our $VERSION = '1.05'; # Remember to also set the App::pmarkdown version.

our @EXPORT_OK = qw(convert set_options);
our %EXPORT_TAGS = (all => \@EXPORT_OK);
Expand Down

0 comments on commit 5a8683a

Please sign in to comment.