Skip to content

Commit

Permalink
Released version 0.26
Browse files Browse the repository at this point in the history
 - Add title that describe which paste you look at
 - Add support for pluggable backends #14
 - Change Dockerfile to pull from github.com/jhthorsen/app-mojopaste instead of cpan
 - Fix "...did you mean do "./script/mojopaste"? at t/config.t line 10."
  • Loading branch information
Jan Henning Thorsen committed Apr 21, 2018
1 parent ff01284 commit d85d816
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 17 deletions.
4 changes: 3 additions & 1 deletion Changes
@@ -1,7 +1,9 @@
Revision history for perl distribution App-mojopaste

0.26 Not Released
0.26 2018-04-21T10:37:22+0200
- Add title that describe which paste you look at
- Add support for pluggable backends #14
- Change Dockerfile to pull from github.com/jhthorsen/app-mojopaste instead of cpan
- Fix "...did you mean do "./script/mojopaste"? at t/config.t line 10."

0.25 2017-06-20T00:20:46+0200
Expand Down
42 changes: 28 additions & 14 deletions Makefile.PL
@@ -1,20 +1,34 @@
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::mojopaste',
AUTHOR => 'Jan Henning Thorsen <jhthorsen@cpan.org>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/App/mojopaste.pm',
VERSION_FROM => 'lib/App/mojopaste.pm',
EXE_FILES => [qw(script/mojopaste)],
META_MERGE => {
resources => {
bugtracker => 'https://github.com/jhthorsen/app-mojopaste/issues',
my %WriteMakefileArgs = (
NAME => 'App::mojopaste',
AUTHOR => 'Jan Henning Thorsen <jhthorsen@cpan.org>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/App/mojopaste.pm',
VERSION_FROM => 'lib/App/mojopaste.pm',
EXE_FILES => [qw(script/mojopaste)],
BUILD_REQUIRES => {},
TEST_REQUIRES => {'Test::More' => '0.88'},
PREREQ_PM => {'Mojolicious' => '6.39', 'Text::CSV' => '1.30'},
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/jhthorsen/app-mojopaste/issues'},
homepage => 'https://github.com/jhthorsen/app-mojopaste',
repository => 'https://github.com/jhthorsen/app-mojopaste.git',
repository => {
type => 'git',
url => 'https://github.com/jhthorsen/app-mojopaste.git',
web => 'https://github.com/jhthorsen/app-mojopaste',
},
},
},
BUILD_REQUIRES => {'Test::More' => '0.88'},
PREREQ_PM => {'Mojolicious' => '6.39', 'Text::CSV' => '1.30'},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
test => {S => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);

unless (eval { ExtUtils::MakeMaker->VERSION('6.63_03') }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}

WriteMakefile(%WriteMakefileArgs);
4 changes: 2 additions & 2 deletions lib/App/mojopaste.pm
@@ -1,6 +1,6 @@
package App::mojopaste;

our $VERSION = '0.25';
our $VERSION = '0.26';

1;

Expand All @@ -12,7 +12,7 @@ App::mojopaste - Pastebin application
=head1 VERSION
0.25
0.26
=head1 DESCRIPTION
Expand Down

0 comments on commit d85d816

Please sign in to comment.