Skip to content

Commit

Permalink
Use a more memorable version number for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed May 21, 2020
1 parent 52a237a commit c570eaf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ jobs:
strategy:
matrix:
perl-version:
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.20'
- '5.30'
container:
Expand Down
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

8.44 2020-05-21
8.50 2020-05-21
- Updated Perl requirement to version 5.16.0.
- Fixed Test::Simple dependency for older versions of Perl.

Expand Down
6 changes: 1 addition & 5 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ use warnings;

use ExtUtils::MakeMaker;

# JSON::PP 2.27103 first shipped with Perl 5.13.9
# Time::Local 1.2 first shipped with Perl 5.13.9
# Test::Simple 1.001002 first shipped with Perl 5.19.6
# List::Util 1.41 first shipped with Perl 5.21.4
# IO::Socket::IP 0.37 first shipped with Perl 5.21.11
Expand Down Expand Up @@ -39,9 +37,7 @@ WriteMakefile(
PREREQ_PM => {
'IO::Socket::IP' => '0.37',
'List::Util' => '1.41',
'JSON::PP' => '2.27103',
'Test::Simple' => '1.001002',
'Time::Local' => '1.2'
'Test::Simple' => '1.001002'
},
EXE_FILES => ['script/hypnotoad', 'script/mojo', 'script/morbo'],
test => {TESTS => 't/*.t t/*/*.t'}
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ has ua => sub { Mojo::UserAgent->new };
has validator => sub { Mojolicious::Validator->new };

our $CODENAME = 'Supervillain';
our $VERSION = '8.44';
our $VERSION = '8.50';

sub BUILD_DYNAMIC {
my ($class, $method, $dyn_methods) = @_;
Expand Down

0 comments on commit c570eaf

Please sign in to comment.