Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add [MetaJSON] to [@Basic] #554

Open
wants to merge 20 commits into
base: v7-in-progress
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ perl:
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
before_install:
- git clone git://github.com/rjbs/travis-perl-helpers -b release-testing ~/travis-perl-helpers
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- build-perl
- perl -V
Expand Down
25 changes: 25 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
Revision history for {{$dist->name}}

{{$NEXT}}
[THIS RELEASE MIGHT BREAK YOUR BUILD]
- now requires perl v5.20.0
- the "plugins" and "plugins_with" methods, along with a few others,
now are meant to be called in list context rather than scalar; you
should update to calling in list context, as Dist::Zilla v8 will stop
returning references

[LESS TERRIFYING CHANGES]
- Introducing Dist::Zilla::Dialect! This library turns on the features
being used by core Dist::Zilla code. Probably don't just use this
blindly in your code, but there it is.
- replace uses of File::HomeDir with a simple glob() (thanks, Karen
Etheridge)
- Dist::Zilla::Tester no longer changes into the source directory when
building. This may break some plugins that do not prepend
$zilla->root to paths when they should. (thanks, Karen Etheridge)
- version strings must now pass version.pm's is_strict checks, which
eliminates such discouraged constructs as v1.23_01 (thanks, Karen
Etheridge)
- the test generated by [MetaTests] is now an author test, not a
release test (thanks, Karen Etheridge)
- all builds now result in a .build/latest symlink (thanks again,
Karen)
- [MetaJSON] is now in [@Basic], with special handling to handle the
possibility that the plugin is loaded twice

6.012 2018-04-21 10:20:21+02:00 Europe/Oslo
- revert addition of Archive::Tar::Wrapper as a mandatory prereq (in
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Data::OptList = 0.110
PPI::XS = 0

[Prereqs]
perl = v5.14.0 ; how tempted am I to set this to v5.20? very!
perl = v5.20.0 ; how tempted am I to set this to v5.24? somewhat!

parent = 0 ; used by the AutoPrereq test corpus

Expand Down
Loading