Skip to content

Commit

Permalink
Version 0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Jun 23, 2024
1 parent 6372ccc commit 6a0f037
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Set update schedule for GitHub Actions

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
22 changes: 22 additions & 0 deletions .github/workflows/perltest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
test:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-test.yml@main

coverage:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-coverage.yml@main

perlcritic:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-perlcritic.yml@main

complexity:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-complexity.yml@main

4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension HTML::TreeBuilder::LibXML

{{$NEXT}}

0.28 2024-06-20T08:17:27Z

- Same code as 0.27 - republishing to force CPAN reindexing

0.27 2024-01-09T06:19:12Z

- don't have the parser string blanks by default #15
Expand Down
3 changes: 2 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"web" : "https://github.com/tokuhirom/HTML-TreeBuilder-LibXML"
}
},
"version" : "0.27",
"version" : "0.28",
"x_contributors" : [
"Carlos Fernando Avila Gratz <[email protected]>",
"Carlos Fernando Avila Gratz <[email protected]>",
Expand All @@ -80,6 +80,7 @@
"Perlover <[email protected]>",
"Stanislaw Pusep <[email protected]>",
"Tatsuhiko Miyagawa <[email protected]>",
"Tokuhiro Matsuno <[email protected]>",
"Yanick Champoux <[email protected]>",
"kimura.hideo <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/TreeBuilder/LibXML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package HTML::TreeBuilder::LibXML;
use strict;
use warnings;
our $VERSION = '0.27';
our $VERSION = '0.28';
use Carp ();
use base 'HTML::TreeBuilder::LibXML::Node';
use XML::LibXML;
Expand Down

0 comments on commit 6a0f037

Please sign in to comment.