Skip to content

Commit

Permalink
Remove debugging. Release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Oct 29, 2024
1 parent 5d4db93 commit 76afb21
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [0.0.3] - 2024-10-29

### Removed

- Unnecessary debugging

## [0.0.2] - 2024-10-29

### Added
Expand Down
1 change: 0 additions & 1 deletion cpanfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
requires 'Data::Printer';
requires 'Feature::Compat::Class';
requires 'File::Basename';
requires 'File::Find';
Expand Down
5 changes: 1 addition & 4 deletions lib/App/LinkSite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The main driver class for App::LinkSite.
use Feature::Compat::Class;

class App::LinkSite {
our $VERSION = '0.0.2';
our $VERSION = '0.0.3';
use strict;
use warnings;
use feature qw[say signatures];
Expand All @@ -27,7 +27,6 @@ class App::LinkSite {
use File::Find;
use File::Basename;
use FindBin '$Bin';
use Data::Printer;
use File::ShareDir;

use App::LinkSite::Site;
Expand All @@ -52,8 +51,6 @@ class App::LinkSite {
my $json = path($file)->slurp;
my $data = JSON->new->decode($json);

debug(np $data);

$ga4 = $data->{ga4} // '';
$font_awesome_kit = $data->{font_awesome_kit} // '';

Expand Down
2 changes: 1 addition & 1 deletion lib/App/LinkSite/Link.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A class to model a link on a link site (part of App::LinkSite).
use Feature::Compat::Class;

class App::LinkSite::Link {
our $VERSION = '0.0.2';
our $VERSION = '0.0.3';
use strict;
use warnings;
no if $] >= 5.038, 'warnings', 'experimental::class';
Expand Down
2 changes: 1 addition & 1 deletion lib/App/LinkSite/Site.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A class to model a link site (part of App::LinkSite).
use Feature::Compat::Class;

class App::LinkSite::Site {
our $VERSION = '0.0.2';
our $VERSION = '0.0.3';
use strict;
use warnings;
no if $] >= 5.038, 'warnings', 'experimental::class';
Expand Down
2 changes: 1 addition & 1 deletion lib/App/LinkSite/Social.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A class to model a social link on a link site (part of App::LinkSite).
use Feature::Compat::Class;

class App::LinkSite::Social {
our $VERSION = '0.0.2';
our $VERSION = '0.0.3';
use strict;
use warnings;
use feature qw[say signatures];
Expand Down

0 comments on commit 76afb21

Please sign in to comment.