Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
voegelas committed Sep 30, 2022
1 parent f8c21d5 commit b9b2159
Show file tree
Hide file tree
Showing 16 changed files with 44 additions and 40 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for MyApp::Weather

0.005 2022-09-30 10:08:19 CEST

- Round the temperatures with int()

0.004 2022-08-17 10:15:15 CEST

- Fix the temperature rounding
Expand Down
28 changes: 14 additions & 14 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,51 +65,51 @@
"provides" : {
"MyApp::Weather" : {
"file" : "lib/MyApp/Weather.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Controller::Location" : {
"file" : "lib/MyApp/Weather/Controller/Location.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::LocationForecast" : {
"file" : "lib/MyApp/Weather/Model/LocationForecast.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::LocationForecast::Day" : {
"file" : "lib/MyApp/Weather/Model/LocationForecast/Day.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::LocationForecast::Download" : {
"file" : "lib/MyApp/Weather/Model/LocationForecast/Download.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::LocationForecast::Role::TimeSeries" : {
"file" : "lib/MyApp/Weather/Model/LocationForecast/Role/TimeSeries.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::LocationForecast::TimeStep" : {
"file" : "lib/MyApp/Weather/Model/LocationForecast/TimeStep.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::UserAgent" : {
"file" : "lib/MyApp/Weather/Model/UserAgent.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::WeatherBadness" : {
"file" : "lib/MyApp/Weather/Model/WeatherBadness.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Model::WeatherEmojis" : {
"file" : "lib/MyApp/Weather/Model/WeatherEmojis.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::Plugin::Helpers" : {
"file" : "lib/MyApp/Weather/Plugin/Helpers.pm",
"version" : "0.004"
"version" : "0.005"
},
"MyApp::Weather::View::Messages" : {
"file" : "lib/MyApp/Weather/View/Messages.pm",
"version" : "0.004"
"version" : "0.005"
}
},
"release_status" : "stable",
Expand All @@ -120,9 +120,9 @@
"web" : "https://github.com/voegelas/MyApp-Weather"
}
},
"version" : "0.004",
"version" : "0.005",
"x_generated_by_perl" : "v5.34.1",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.30",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.32",
"x_spdx_expression" : "AGPL-3.0"
}

2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ my %WriteMakefileArgs = (
"Test::Mojo" => 0,
"Test::More" => 0
},
"VERSION" => "0.004",
"VERSION" => "0.005",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = MyApp-Weather
version = 0.004
version = 0.005
author = Andreas Vögele <[email protected]>
license = AGPL_3
copyright_holder = Andreas Vögele
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base 'Mojolicious', -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Mojo::File qw(curfile);
use Mojo::Home;
Expand Down Expand Up @@ -63,7 +63,7 @@ MyApp::Weather - Weather forecasts in the iCalendar data format
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Controller/Location.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base 'Mojolicious::Controller', -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use File::Spec;
use Mojo::File qw(path);
Expand Down Expand Up @@ -92,7 +92,7 @@ MyApp::Weather::Controller::Location - Weather forecast controller
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/LocationForecast.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -base, -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Mojo::Collection;
use MyApp::Weather::Model::LocationForecast::Day;
Expand Down Expand Up @@ -72,7 +72,7 @@ MyApp::Weather::Model::LocationForecast - Weather forecast for a location
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/LocationForecast/Day.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -base, -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Time::Seconds;

Expand Down Expand Up @@ -200,7 +200,7 @@ MyApp::Weather::Model::LocationForecast::Day - Weather forecast for a day
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/LocationForecast/Download.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -base, -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use File::Spec;
use Mojo::Log;
Expand Down Expand Up @@ -83,7 +83,7 @@ MyApp::Weather::Model::LocationForecast::Download - Download weather forecasts
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/LocationForecast/Role/TimeSeries.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -role, -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Mojo::Collection;

Expand Down Expand Up @@ -116,7 +116,7 @@ MyApp::Weather::Model::LocationForecast::Role::TimeSeries - Mojo::Collection rol
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/LocationForecast/TimeStep.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -base, -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use MyApp::Weather::Model::WeatherEmojis qw($EMOJIS);
use MyApp::Weather::Model::WeatherBadness qw($BADNESS $WETNESS);
Expand Down Expand Up @@ -162,7 +162,7 @@ MyApp::Weather::Model::LocationForecast::TimeStep - Data point in weather foreca
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/UserAgent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base 'Mojo::UserAgent', -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use File::Spec;
use Mojo::Date;
Expand Down Expand Up @@ -174,7 +174,7 @@ MyApp::Weather::Model::UserAgent - Caching HTTP user agent
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/WeatherBadness.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -strict;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Exporter qw(import);

Expand Down Expand Up @@ -108,7 +108,7 @@ MyApp::Weather::Model::WeatherBadness - Weather badness and wetness
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Model/WeatherEmojis.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -strict;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Exporter qw(import);

Expand Down Expand Up @@ -64,7 +64,7 @@ MyApp::Weather::Model::WeatherEmojis - Weather emojis
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/Plugin/Helpers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base 'Mojolicious::Plugin', -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use MyApp::Weather::View::Messages qw(gettext);

Expand Down Expand Up @@ -37,7 +37,7 @@ MyApp::Weather::Plugin::Helpers - Mojolicious helpers
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/MyApp/Weather/View/Messages.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Mojo::Base -strict, -signatures;

# SPDX-License-Identifier: AGPL-3.0-or-later

our $VERSION = '0.004';
our $VERSION = '0.005';

use Exporter qw(import);

Expand Down Expand Up @@ -255,7 +255,7 @@ MyApp::Weather::View::Messages - MyApp::Weather translations
=head1 VERSION
version 0.004
version 0.005
=head1 SYNOPSIS
Expand Down

0 comments on commit b9b2159

Please sign in to comment.