Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0.38
  • Loading branch information
ingydotnet committed Jun 26, 2014
1 parent 107b448 commit d865653
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.38
date: Wed Jun 25 21:08:05 PDT 2014
changes:
- Revert json.t. Failed on cpantesters.
---
version: 0.37
date: Wed Jun 25 16:47:29 PDT 2014
changes:
Expand Down
9 changes: 7 additions & 2 deletions Makefile
Expand Up @@ -16,6 +16,7 @@ VERSION := $(shell zild meta version)
DISTDIR := $(NAME)-$(VERSION)
DIST := $(DISTDIR).tar.gz
NAMEPATH := $(subst -,/,$(NAME))
SUCCESS := "$(DIST) Released!!!"

default: help

Expand Down Expand Up @@ -92,7 +93,9 @@ release: clean update check-release test disttest
git push --tag
make clean
git status
@[ -n "$$(which cowsay)" ] && cowsay "$(DIST) Released!!!" && echo
@echo
@[ -n "$$(which cowsay)" ] && cowsay "$(SUCCESS)" || echo "$(SUCCESS)"
@echo

preflight: clean update check-release test disttest
make dist
Expand All @@ -102,7 +105,9 @@ preflight: clean update check-release test disttest
@echo git push --tag
make clean
git status
@[ -n "$$(which cowsay)" ] && cowsay "$(DIST) Released!!!" && echo
@echo
@[ -n "$$(which cowsay)" ] && cowsay "$(SUCCESS)" || echo "$(SUCCESS)"
@echo

readme:
swim --pod-cpan doc/$(NAMEPATH).swim > ReadMe.pod
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.1

name: boolean
version: 0.37
version: 0.38
abstract: Boolean support for Perl
homepage: https://metacpan.org/release/boolean

Expand Down
2 changes: 1 addition & 1 deletion lib/boolean.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package boolean;
our $VERSION = '0.37';
our $VERSION = '0.38';

my ($true, $false);

Expand Down
2 changes: 1 addition & 1 deletion test/json.t
@@ -1,7 +1,7 @@
use strict; use warnings;
use Test::More tests => 3;
use boolean -truth;
my $HAVE_JSON = eval { require JSON::MaybeXS; 1 };
my $HAVE_JSON = eval { require JSON::MaybeXS };
SKIP: {
skip "JSON is missing", 3 unless $HAVE_JSON;
eval{
Expand Down

0 comments on commit d865653

Please sign in to comment.