Skip to content

Commit

Permalink
added tracker of versions
Browse files Browse the repository at this point in the history
  • Loading branch information
htrgouvea committed Jan 3, 2024
1 parent 60c3e66 commit 8faacfb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/Zarn/AST.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ package Zarn::AST {
use Getopt::Long;
use PPI::Find;
use PPI::Document;


our $VERSION = '0.01';

sub new {
my ($self, $parameters) = @_;
my ($file, $rules, @results);
Expand Down
2 changes: 2 additions & 0 deletions lib/Zarn/Files.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package Zarn::Files {
use warnings;
use File::Find::Rule;

our $VERSION = '0.01';

sub new {
my ($self, $source, $ignore) = @_;

Expand Down
2 changes: 2 additions & 0 deletions lib/Zarn/Rules.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package Zarn::Rules {
use warnings;
use YAML::Tiny;

our $VERSION = '0.01';

sub new {
my ($self, $rules) = @_;

Expand Down
2 changes: 2 additions & 0 deletions lib/Zarn/Sarif.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ package Zarn::Sarif {
use strict;
use warnings;

our $VERSION = '0.01';

sub new {
my ($self, @vulnerabilities) = @_;

Expand Down

0 comments on commit 8faacfb

Please sign in to comment.