Skip to content

Commit

Permalink
bump version; changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyink committed Apr 6, 2021
1 parent 51a7465 commit 25b2287
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 16 deletions.
6 changes: 3 additions & 3 deletions lib/LINQ.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
package LINQ;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

use Exporter::Shiny qw( LINQ Range Repeat END );

Expand All @@ -15,7 +15,7 @@ our $IN_LOOP;
my $end = do {
package LINQ::END;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
my $x = 42;
bless( \$x );
&Internals::SvREADONLY( \$x, !!1 );
Expand All @@ -25,7 +25,7 @@ my $end = do {
my $last = do {
package LINQ::LAST;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
my $x = 666;
bless( \$x );
&Internals::SvREADONLY( \$x, !!1 );
Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Array.pm
Expand Up @@ -9,7 +9,7 @@ if ( $] < 5.010000 ) {
package LINQ::Array;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

use Class::Tiny qw( array );
use Role::Tiny::With ();
Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Collection.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
package LINQ::Collection;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

use Role::Tiny;
use LINQ::Util::Internal ();
Expand Down
16 changes: 8 additions & 8 deletions lib/LINQ/Exception.pm
Expand Up @@ -10,7 +10,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

use Class::Tiny qw( package file line );
use overload q[""] => sub { shift->to_string };
Expand Down Expand Up @@ -42,7 +42,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::Unimplemented;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( method );

Expand All @@ -57,7 +57,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::InternalError;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( message );
}
Expand All @@ -66,7 +66,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::CallerError;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( message );

Expand All @@ -82,7 +82,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::CollectionError;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( collection );

Expand All @@ -98,7 +98,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::NotFound;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception::CollectionError );
sub message { "Item not found" }
}
Expand All @@ -107,7 +107,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::MultipleFound;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception::CollectionError );
use Class::Tiny qw( found );
sub message { "Item not found" }
Expand All @@ -117,7 +117,7 @@ if ( $] < 5.010000 ) {

package LINQ::Exception::Cast;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';
use parent -norequire, qw( LINQ::Exception::CollectionError );
use Class::Tiny qw( type );

Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Grouping.pm
Expand Up @@ -9,7 +9,7 @@ if ( $] < 5.010000 ) {
package LINQ::Grouping;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

use Class::Tiny qw( key values );

Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Iterator.pm
Expand Up @@ -103,7 +103,7 @@ if ( $] < 5.010000 ) {
package LINQ::Iterator;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

use Role::Tiny::With ();
use LINQ::Util::Internal ();
Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Util/Internal.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
package LINQ::Util::Internal;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_004';
our $VERSION = '0.000_005';

sub create_linq {
require LINQ;
Expand Down
8 changes: 8 additions & 0 deletions meta/changes.pret
Expand Up @@ -26,3 +26,11 @@
item "Make `concat` work on potentially infinite collections."^^Change;
item "Make `to_iterator` work on potentially infinite collections."^^Change;
].

`LINQ 0.000_005 cpan:TOBYINK`
issued 2021-04-04;
changeset [
item "Document LINQ::Exception."^^Documentation;
item "`foreach` method"^^Addition;
item "`target_class` method"^^Removal;
].

0 comments on commit 25b2287

Please sign in to comment.