Skip to content

Commit

Permalink
bump version; changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyink committed Jul 21, 2022
1 parent 64ef11f commit 54ad23a
Show file tree
Hide file tree
Showing 36 changed files with 56 additions and 35 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.007004';
our $VERSION = '0.007005';

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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 @@ -6,7 +6,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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 qw(Mite::App::Command);

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.007004';
our $VERSION = '0.007005';

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 @@ -6,7 +6,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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 @@ -6,7 +6,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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 @@ -6,7 +6,7 @@

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

use B ();

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

BEGIN {
require Scalar::Util;
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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

use Path::Tiny;

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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.007004';
our $VERSION = '0.007005';

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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.007004';
our $VERSION = '0.007005';

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

our $USES_MITE = "Mite::Class";
our $MITE_SHIM = "Mite::Shim";
our $MITE_VERSION = "0.007004";
our $MITE_VERSION = "0.007005";

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

`Mite 0.007005 cpan:TOBYINK`
issued 2022-07-21;
changeset [
item [
a dcs:Change;
label "Builders are now used over defaults if an attribute has both, but you shouldn't be doing that anyway.";
];
item [
a dcs:Change;
label "Check ref($thing) before calling Scalar::Util::weaken($thing).";
];
item [
a dcs:Change;
label "Slightly prettier code for isa checks of attributes where isa => Object or isa => InstanceOf['Some::Class'].";
];
item [
a dcs:Change;
label "Slightly prettier code for setting defaults of attributes where isa => Bool.";
];
].

`Mite 0.007004 cpan:TOBYINK`
issued 2022-07-20;
changeset [
Expand Down

0 comments on commit 54ad23a

Please sign in to comment.