Skip to content

Commit

Permalink
bump version; changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyink committed Aug 8, 2022
1 parent 6724ec6 commit e185370
Show file tree
Hide file tree
Showing 37 changed files with 49 additions and 38 deletions.
2 changes: 1 addition & 1 deletion lib/Mite.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
package Mite;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::App;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use Module::Pluggable
search_path => [ 'Mite::App::Command' ],
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::App::Command;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

has app => (
is => ro,
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/clean.pm
Expand Up @@ -7,7 +7,7 @@ use Mite::Miteception -all;
extends qw(Mite::App::Command);

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

sub abstract {
return "Remove compiled mite files.";
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/clean.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/compile.pm
Expand Up @@ -7,7 +7,7 @@ use Mite::Miteception -all;
extends 'Mite::App::Command' => { -version => '0.009000' };

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

sub abstract {
return "Make your code ready to run.";
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/compile.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/init.pm
Expand Up @@ -7,7 +7,7 @@ use Mite::Miteception -all;
extends qw(Mite::App::Command);

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

sub abstract {
return "Begin using mite with your project.";
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/init.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/preview.pm
Expand Up @@ -7,7 +7,7 @@ use Mite::Miteception -all;
extends qw(Mite::App::Command);

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

sub abstract {
return "Preview the .mite.pm for a file.";
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/App/Command/preview.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Attribute.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Attribute;
use Mite::Miteception qw( -all !lazy );

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use B ();
use List::Util ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Attribute.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
8 changes: 5 additions & 3 deletions lib/Mite/Attribute/SHV/CodeGen.pm
Expand Up @@ -4,9 +4,11 @@ use warnings;

package Mite::Attribute::SHV::CodeGen;

use Sub::HandlesVia::CodeGenerator 0.034 ();

our @ISA = 'Sub::HandlesVia::CodeGenerator';
if ( ! $ENV{MITE_COMPILE_SELF} ) {
# SHV uses Mite, so cannot be required by Mite during bootstrapping
require Sub::HandlesVia::CodeGenerator;
our @ISA = 'Sub::HandlesVia::CodeGenerator';
}

sub _handle_sigcheck {
my ( $self, $method_name, $handler, $env, $code, $state ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Class.pm
Expand Up @@ -7,7 +7,7 @@ use Mite::Miteception -all;
extends qw(Mite::Role);

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use Path::Tiny;
use mro;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Class.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Compiled.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Compiled;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use Path::Tiny;

Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Compiled.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Config.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Config;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

has mite_dir_name =>
is => ro,
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Config.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/MakeMaker.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::MakeMaker;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use File::Find;
use autodie;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/MakeMaker.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Miteception.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
package Mite::Miteception;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use Import::Into;
use Mite::Shim ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/ModuleBuild.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
package Mite::ModuleBuild;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use parent 'Module::Build';

Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Project.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Project;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

has sources =>
is => ro,
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Project.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Role.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Role;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

use Path::Tiny;
use B ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Role.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Role/Tiny.pm
Expand Up @@ -7,7 +7,7 @@ use Mite::Miteception -all;
extends qw(Mite::Role);

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

sub inhale {
my ( $class, $rolename, %args ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Role/Tiny.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Signature.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Signature;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

has class =>
is => ro,
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Signature.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Source.pm
Expand Up @@ -6,7 +6,7 @@ package Mite::Source;
use Mite::Miteception -all;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009002';
our $VERSION = '0.009003';

has file =>
is => ro,
Expand Down
2 changes: 1 addition & 1 deletion lib/Mite/Source.pm.mite.pm
Expand Up @@ -7,7 +7,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.009002";
our $MITE_VERSION = "0.009003";

BEGIN {
require Scalar::Util;
Expand Down
9 changes: 9 additions & 0 deletions meta/changes.pret
@@ -1,6 +1,15 @@
# This file acts as the project's changelog.
#

`Mite 0.009003 cpan:TOBYINK`
issued 2022-08-08;
changeset [
item [
a dcs:Change;
label "Major improvements to how Type::Params-style signatures are inlined when generating code for Sub::HandlesVia.";
];
].

`Mite 0.009002 cpan:TOBYINK`
issued 2022-08-08;
changeset [
Expand Down

0 comments on commit e185370

Please sign in to comment.