Skip to content

Commit

Permalink
CVSS v1.00
Browse files Browse the repository at this point in the history
  • Loading branch information
giterlizzi committed Jul 30, 2024
1 parent bdc331f commit 1aa52fd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Change history for CVSS

1.00 2024-07-31
- First release of CVSS
2 changes: 1 addition & 1 deletion lib/CVSS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use CVSS::v4;

our @EXPORT = qw(encode_cvss decode_cvss cvss_to_xml);

our $VERSION = '0.99';
our $VERSION = '1.00';
$VERSION =~ tr/_//d; ## no critic

my $CVSS_CLASSES = {'2.0' => 'CVSS::v2', '3.0' => 'CVSS::v3', '3.1' => 'CVSS::v3', '4.0' => 'CVSS::v4'};
Expand Down
2 changes: 1 addition & 1 deletion lib/CVSS/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use warnings;

use Carp ();

our $VERSION = '0.99';
our $VERSION = '1.00';
$VERSION =~ tr/_//d; ## no critic

use overload '""' => \&to_string, fallback => 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/CVSS/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use utf8;
use warnings;

our $VERSION = '0.99';
our $VERSION = '1.00';
$VERSION =~ tr/_//d; ## no critic


Expand Down
2 changes: 1 addition & 1 deletion lib/CVSS/v2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use List::Util qw(min);
use base 'CVSS::Base';
use CVSS::Constants;

our $VERSION = '0.99';
our $VERSION = '1.00';
$VERSION =~ tr/_//d; ## no critic

use constant DEBUG => $ENV{CVSS_DEBUG};
Expand Down
2 changes: 1 addition & 1 deletion lib/CVSS/v3.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Carp ();
use base 'CVSS::Base';
use CVSS::Constants;

our $VERSION = '0.99';
our $VERSION = '1.00';
$VERSION =~ tr/_//d; ## no critic

use constant DEBUG => $ENV{CVSS_DEBUG};
Expand Down
2 changes: 1 addition & 1 deletion lib/CVSS/v4.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use List::Util qw(any max min);
use base 'CVSS::Base';
use CVSS::Constants;

our $VERSION = '0.99';
our $VERSION = '1.00';
$VERSION =~ tr/_//d; ## no critic

use constant DEBUG => $ENV{CVSS_DEBUG};
Expand Down

0 comments on commit 1aa52fd

Please sign in to comment.