Skip to content

Commit

Permalink
Release 0.310100
Browse files Browse the repository at this point in the history
  • Loading branch information
nwellnhof committed Aug 13, 2024
1 parent b5369d9 commit 049f759
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 12 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Revision history for Perl module CommonMark

0.310100 2024-08-13
- Recommend and test with libcmark 0.31.1
- Fix build with libcmark 0.25
- Expand and improve the documentation (David E. Wheeler)
- Move from Travis/Appveyor to Github CI. Thanks to David E. Wheeler
for the initial commit!

0.290000 2019-04-09
- BREAKING CHANGE: Add support for OPT_UNSAFE
Safe HTML rendering is now enabled by default. Use OPT_UNSAFE to
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012.
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.024.
Changes
CommonMark.xs
INSTALL.SKIP
Expand Down
9 changes: 5 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Nick Wellnhofer <wellnhofer@aevum.de>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Dist::Zilla version 6.024, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -51,8 +51,9 @@
"web" : "https://github.com/nwellnhof/perl-commonmark"
}
},
"version" : "0.290000",
"x_generated_by_perl" : "v5.26.2",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.06"
"version" : "0.310100",
"x_generated_by_perl" : "v5.34.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.27",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}

7 changes: 4 additions & 3 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ configure_requires:
Devel::CheckLib: '0'
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
generated_by: 'Dist::Zilla version 6.024, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -20,6 +20,7 @@ requires:
resources:
bugtracker: https://github.com/nwellnhof/perl-commonmark/issues
repository: https://github.com/nwellnhof/perl-commonmark.git
version: '0.290000'
x_generated_by_perl: v5.26.2
version: '0.310100'
x_generated_by_perl: v5.34.0
x_serialization_backend: 'YAML::Tiny version 1.73'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This Makefile.PL for CommonMark was generated by
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.47.
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.49.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
Expand Down Expand Up @@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Encode" => 0,
"Test::More" => 0
},
"VERSION" => "0.290000",
"VERSION" => "0.310100",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = CommonMark
abstract = Interface to the CommonMark C library
version = 0.290000
version = 0.310100
author = Nick Wellnhofer <wellnhofer@aevum.de>
license = Perl_5
copyright_holder = Nick Wellnhofer
Expand Down
2 changes: 1 addition & 1 deletion lib/CommonMark.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package CommonMark;
use XSLoader;

BEGIN {
our $VERSION = '0.290000';
our $VERSION = '0.310100';
XSLoader::load('CommonMark', $VERSION);
}

Expand Down

0 comments on commit 049f759

Please sign in to comment.