Skip to content

Commit

Permalink
bump version; changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyink committed Mar 25, 2021
1 parent 16c8f2c commit 6de5b4d
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
4 changes: 2 additions & 2 deletions lib/LINQ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
package LINQ;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';

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

Expand All @@ -14,7 +14,7 @@ our $FORCE_ITERATOR;
my $end = do {
package LINQ::END;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
my $x = 42;
bless(\$x);
&Internals::SvREADONLY(\$x, !!1);
Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Array.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ($] < 5.010000) {
package LINQ::Array;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';

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

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';

use Role::Tiny;

Expand Down
16 changes: 8 additions & 8 deletions lib/LINQ/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ($] < 5.010000) {
{
package LINQ::Exception;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';

use Class::Tiny qw( package file line );
use overload q[""] => sub { shift->to_string };
Expand Down Expand Up @@ -40,7 +40,7 @@ if ($] < 5.010000) {
{
package LINQ::Exception::Unimplemented;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( method );
sub message {
Expand All @@ -53,15 +53,15 @@ if ($] < 5.010000) {
{
package LINQ::Exception::InternalError;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( message );
}

{
package LINQ::Exception::CallerError;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( message );
sub BUILD {
Expand All @@ -75,7 +75,7 @@ if ($] < 5.010000) {
{
package LINQ::Exception::CollectionError;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception );
use Class::Tiny qw( collection );
sub BUILD {
Expand All @@ -89,15 +89,15 @@ if ($] < 5.010000) {
{
package LINQ::Exception::NotFound;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception::CollectionError );
sub message { "Item not found" };
}

{
package LINQ::Exception::MultipleFound;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception::CollectionError );
use Class::Tiny qw( found );
sub message { "Item not found" };
Expand All @@ -106,7 +106,7 @@ if ($] < 5.010000) {
{
package LINQ::Exception::Cast;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';
use parent -norequire, qw( LINQ::Exception::CollectionError );
use Class::Tiny qw( type );
sub message {
Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Grouping.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ($] < 5.010000) {
package LINQ::Grouping;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';

use Class::Tiny qw( key values );

Expand Down
2 changes: 1 addition & 1 deletion lib/LINQ/Iterator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ if ($] < 5.010000) {
package LINQ::Iterator;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.000_001';
our $VERSION = '0.000_002';

use Role::Tiny::With ();

Expand Down
6 changes: 6 additions & 0 deletions meta/changes.pret
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@
issued 2021-03-25;
label "Initial release".

`LINQ 0.000_002 cpan:TOBYINK`
issued 2021-03-25;
changeset [
item "Implement `default_if_empty`."^^Addition;
item "Don't require type constraints passed to `of_type` to have a `has_coercion` method. (Works with Type::Nano.)"^^Change;
].

0 comments on commit 6de5b4d

Please sign in to comment.