Skip to content

Commit

Permalink
v0.48
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Jun 11, 2022
1 parent 0c3b6ee commit 5c4f6f3
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 13 deletions.
15 changes: 10 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The distribution is managed with
[Dist::Zilla](https://metacpan.org/release/Dist-Zilla).

However, you can still compile and test the code with the
`MakeFile.PL`
`Makefile.PL`
in the repository:

perl Makefile.PL
Expand Down Expand Up @@ -90,8 +90,13 @@ to enforce a uniform coding style. This is tested as part of the author
testing suite. You can install this and any other necessary non-Perl tools by
running `./dev-bin/install-xt-tools.sh`.

Please run this before committing your changes and address any issues it
brings up.
Then you can use `precious` to tidy and lint your code:

$> precious tidy -a
$> precious lint -a

Please run `precious tidy -a` and `precious lint -a` before committing your
changes and address any issues that it reports.

You can also set up a git pre-commit hook that checks all changed files for
linting issues by running `./git/setup.pl`.
Expand All @@ -106,5 +111,5 @@ request to the `.mailmap` file to contain the correct mapping.

## Generated By

This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.014 from a
template file originating in Dist-Zilla-PluginBundle-DROLSKY-1.18.
This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.015 from a
template file originating in Dist-Zilla-PluginBundle-DROLSKY-1.20.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{{$NEXT}}

0.48 2022-06-11

- Importing types into a class which inherited from another class that had
imported types wouldn't work, leaving the child class with no `t()`
sub. Patch by Kerin Millar.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This software is Copyright (c) 2012 - 2021 by Dave Rolsky.
This software is Copyright (c) 2012 - 2022 by Dave Rolsky.

This is free software, licensed under:

Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Makefile.PL for Specio was generated by
# Dist::Zilla::Plugin::DROLSKY::MakeMaker 1.18
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.48.
# Dist::Zilla::Plugin::DROLSKY::MakeMaker 1.20
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.49.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Specio - Type constraints and coercions for Perl

# VERSION

version 0.47
version 0.48

# SYNOPSIS

Expand Down Expand Up @@ -409,8 +409,6 @@ which would also make MooseX::Types obsolete.

Bugs may be submitted at [https://github.com/houseabsolute/Specio/issues](https://github.com/houseabsolute/Specio/issues).

I am also usually active on IRC as 'autarch' on `irc://irc.perl.org`.

# SOURCE

The source code repository for Specio can be found at [https://github.com/houseabsolute/Specio](https://github.com/houseabsolute/Specio).
Expand Down Expand Up @@ -442,10 +440,11 @@ Dave Rolsky <[email protected]>
- cpansprout <[email protected]>
- Graham Knop <[email protected]>
- Karen Etheridge <[email protected]>
- Vitaly Lipatov <[email protected]>

# COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 - 2021 by Dave Rolsky.
This software is Copyright (c) 2012 - 2022 by Dave Rolsky.

This is free software, licensed under:

Expand Down
3 changes: 2 additions & 1 deletion cpanfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is generated by Dist::Zilla::Plugin::CPANFile v6.017
# This file is generated by Dist::Zilla::Plugin::CPANFile v6.025
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.

requires "B" => "0";
Expand Down Expand Up @@ -49,6 +49,7 @@ on 'configure' => sub {

on 'develop' => sub {
requires "Capture::Tiny" => "0";
requires "Encode" => "0";
requires "File::Spec" => "0";
requires "FindBin" => "0";
requires "IO::Handle" => "0";
Expand Down

0 comments on commit 5c4f6f3

Please sign in to comment.