Skip to content

Commit

Permalink
Bump version after release
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Dec 23, 2024
1 parent e4793e8 commit 7d08a56
Show file tree
Hide file tree
Showing 41 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ my %WriteMakefileArgs = (
"open" => 0,
"utf8" => 0
},
"VERSION" => "0.49",
"VERSION" => "0.50",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use 5.008;

our $VERSION = '0.49';
our $VERSION = '0.50';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Coercion.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Coercion;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Specio::OO;

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/AnyCan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::AnyCan;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use List::Util 1.33 ();
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/AnyDoes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::AnyDoes;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Role::Tiny::With;
use Scalar::Util ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/AnyIsa.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::AnyIsa;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Role::Tiny::With;
use Scalar::Util ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Enum.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Enum;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Intersection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Intersection;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use List::Util 1.33 qw( all );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/ObjectCan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::ObjectCan;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use List::Util 1.33 ();
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/ObjectDoes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::ObjectDoes;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Role::Tiny::With;
use Scalar::Util ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/ObjectIsa.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::ObjectIsa;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Role::Tiny::With;
use Scalar::Util ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Parameterizable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Parameterizable;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess );
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Parameterized.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Parameterized;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Role/CanType.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Role::CanType;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use Scalar::Util qw( blessed );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Role/DoesType.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Role::DoesType;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use Scalar::Util qw( blessed );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Role/Interface.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Role::Interface;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess );
use Eval::Closure qw( eval_closure );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Role/IsaType.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Role::IsaType;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use Scalar::Util qw( blessed );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Simple;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Role::Tiny::With;
use Specio::OO;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Structurable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Structurable;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess );
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Structured.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Structured;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone ();
use List::Util 1.33 qw( all );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Constraint/Union.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Constraint::Union;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Clone;
use List::Util 1.33 qw( all any );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Declare.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use parent 'Exporter';

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( croak );
use Specio::Coercion;
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/DeclaredAt.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::DeclaredAt;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Specio::OO;

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use overload
q{""} => 'as_string',
fallback => 1;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Devel::StackTrace;
use Scalar::Util qw( blessed );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Exporter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Exporter;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use parent 'Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Helpers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp qw( croak );
use Exporter 'import';
use overload ();

our $VERSION = '0.49';
our $VERSION = '0.50';

use Scalar::Util qw( blessed );

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Builtins.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Builtins;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use parent 'Specio::Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Numeric.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Numeric;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use parent 'Specio::Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Perl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Perl;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use parent 'Specio::Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/String.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::String;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use parent 'Specio::Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Structured.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Structured;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use parent 'Specio::Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Structured/Dict.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Structured::Dict;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess );
use List::Util 1.33 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Structured/Map.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Structured::Map;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess );
use List::Util 1.33 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Library/Structured/Tuple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Library::Structured::Tuple;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess );
use List::Util 1.33 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/OO.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Specio::Helpers qw( perlstring );
use Specio::PartialDump qw( partial_dump );
use Specio::TypeChecks;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Exporter qw( import );

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/PartialDump.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::PartialDump;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Scalar::Util qw( looks_like_number reftype blessed );

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Registry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use parent 'Exporter';

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( confess croak );

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Role/Inlinable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Role::Inlinable;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Eval::Closure qw( eval_closure );

Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/Subs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::Subs;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Carp qw( croak );
use Eval::Closure qw( eval_closure );
Expand Down
2 changes: 1 addition & 1 deletion lib/Specio/TypeChecks.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Specio::TypeChecks;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use Exporter qw( import );
use Specio::Helpers qw( is_class_loaded );
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Specio.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Test::Specio;
use strict;
use warnings;

our $VERSION = '0.49';
our $VERSION = '0.50';

use IO::File;
use Scalar::Util qw( blessed looks_like_number openhandle );
Expand Down

0 comments on commit 7d08a56

Please sign in to comment.