Skip to content

Commit

Permalink
Increment to v0.11.2
Browse files Browse the repository at this point in the history
And fix meta merging
  • Loading branch information
theory committed Feb 8, 2024
1 parent 3942e1c commit 4dd1789
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
uses: shogo82148/actions-setup-perl@v1
with: { perl-version: "${{ matrix.perl }}" }
- name: Install Dependencies
run: cpanm -vn Module::Build && cpanm -vn --installdeps --with-recommends .
run: cpanm -vn Module::Build && cpanm -vn --installdeps --with-recommends --with-develop .
- name: Run Tests
run: perl Build.PL ./Build && ./Build test
1 change: 1 addition & 0 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ $class->new(
'perl' => '5.12.0',
},
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
homepage => 'https://metacpan.org/dist/PGXN-API-Searcher',
bugtracker => 'https://github.com/pgxn/pgxn-api-searcher/issues/',
Expand Down
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Perl extension PGXN-API-Searcher.

0.11.2
- Fixed CPAN meta v2 merging to properly include development
requirements.

0.11.1 2024-02-08T21:21:37Z
- Require Lucy v0.6.2.
- Added regression tests to ensure Lucy no longer chokes on null bytes
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/API/Searcher.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Lucy::Search::IndexSearcher;
use Lucy::Highlight::Highlighter;
use Carp;

our $VERSION = 'v0.11.1';
our $VERSION = 'v0.11.2';

sub new {
my ($class, $path) = @_;
Expand Down

0 comments on commit 4dd1789

Please sign in to comment.