diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b2fd724..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.build -boolean-* diff --git a/Changes b/Changes index 3d50919..b45566c 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,10 @@ --- +version: 0.42 +date: Sat Aug 16 10:49:31 PDT 2014 +changes: +- Meta 0.0.2 +- Remove .gitignore +--- version: 0.41 date: Fri Aug 15 15:41:09 PDT 2014 changes: diff --git a/Makefile b/Makefile index 011a589..b6e4132 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ ZILD := $(PERL) -S zild LOG := $(PERL_ZILLA_DIST_RELEASE_LOG) ifneq (,$(shell which zild)) - NAMEPATH := $(shell $(ZILD) meta =cpan/libname) + NAMEPATH := $(shell $(ZILD) meta =zild/libname) NAMEPATH := $(subst ::,/,$(NAMEPATH)) ifeq (,$(NAMEPATH)) NAMEPATH := $(shell $(ZILD) meta name) @@ -124,7 +124,7 @@ endif make check-release make date make test-all - make test-dist + RELEASE_TESTING=1 make test-dist @echo '***** Releasing $(DISTDIR)' make dist ifneq ($(PERL_ZILLA_DIST_RELEASE_TIME),) diff --git a/Meta b/Meta index b79d051..023c070 100644 --- a/Meta +++ b/Meta @@ -1,31 +1,27 @@ -=meta: 0.0.1 +=meta: 0.0.2 name: boolean -version: 0.41 +version: 0.42 abstract: Boolean support for Perl homepage: https://metacpan.org/release/boolean - +language: perl license: perl copyright: 2007-2014. Ingy döt Net. author: name: Ingy döt Net email: ingy@cpan.org + homepage: http://ingy.net github: ingydotnet twitter: ingydotnet freenode: ingy - homepage: http://ingy.net - -requires: - perl: 5.8.1 - -recommends: - JSON: 0 devel: git: https://github.com/ingydotnet/boolean-pm bug: https://github.com/ingydotnet/boolean-pm/issues irc: irc.freenode.net#pkg -=travis: - type: perl - irc: irc.freenode.net#pkg +requires: + perl: 5.8.1 + +recommends: + JSON: 0 diff --git a/lib/boolean.pm b/lib/boolean.pm index 1a60e80..66f466c 100644 --- a/lib/boolean.pm +++ b/lib/boolean.pm @@ -1,6 +1,6 @@ use strict; use warnings; package boolean; -our $VERSION = '0.41'; +our $VERSION = '0.42'; my ($true, $false);