Skip to content

Commit

Permalink
Prepare version 0.023
Browse files Browse the repository at this point in the history
  • Loading branch information
renderorange committed May 31, 2024
1 parent 88318fc commit 7ff2ea1
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lib/Pasteburn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Pasteburn::Controller::Root ();
use Pasteburn::Controller::Secret ();
use Pasteburn::Controller::About ();

our $VERSION = '0.022';
our $VERSION = '0.023';

BEGIN {
require Pasteburn::Config;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strictures version => 2;
use Config::Tiny ();
use Data::Structure::Util ();

our $VERSION = '0.022';
our $VERSION = '0.023';

sub get {
my $config = _load();
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Controller/About.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Pasteburn::Controller::About;

use Dancer2 appname => 'pasteburn';

our $VERSION = '0.022';
our $VERSION = '0.023';

get q{/about} => sub {
my $template_params = { footer => config->{footer} };
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Controller/Root.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Pasteburn::Controller::Root;

use Dancer2 appname => 'pasteburn';

our $VERSION = '0.022';
our $VERSION = '0.023';

get q{/} => sub {
redirect '/secret';
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Controller/Secret.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Dancer2 appname => 'pasteburn';
use HTTP::Status ();
use Pasteburn::Model::Secrets ();

our $VERSION = '0.022';
our $VERSION = '0.023';

get q{/secret} => sub {
my $session_response = Pasteburn::get_session_response();
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Crypt/Hash.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Crypt::Eksblowfish::Bcrypt ();
use Digest::SHA ();
use Encode ();

our $VERSION = '0.022';
our $VERSION = '0.023';

sub new {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Crypt/Storage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strictures version => 2;
use Encode ();
use Session::Storage::Secure ();

our $VERSION = '0.022';
our $VERSION = '0.023';

sub new {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/DB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strictures version => 2;
use Cwd ();
use DBI;

our $VERSION = '0.022';
our $VERSION = '0.023';

sub connect_db {
my $dsn = load();
Expand Down
2 changes: 1 addition & 1 deletion lib/Pasteburn/Model/Secrets.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use Moo;
use MooX::ClassAttribute;
use namespace::clean;

our $VERSION = '0.022';
our $VERSION = '0.023';

has id => (
is => 'rwp',
Expand Down
2 changes: 1 addition & 1 deletion t/lib/Pasteburn/Test.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Cwd ();

use parent 'Test::More';

our $VERSION = '0.022';
our $VERSION = '0.023';

our ( $tempdir, $dbh );

Expand Down

0 comments on commit 7ff2ea1

Please sign in to comment.