Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
peczenyj committed Dec 11, 2023
1 parent f4651e6 commit d2d5066
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 31 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
0.081
- reorganize JSON output
- small fixes in pod

Expand Down
62 changes: 33 additions & 29 deletions README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GDPR::IAB::TCFv2 - Transparency & Consent String version 2 parser

=head1 VERSION

Version 0.08
Version 0.081

=head1 SYNOPSIS

Expand Down Expand Up @@ -371,34 +371,38 @@ With option C<convert_blessed>, the encoder will call this method.
# outputs:

{
"tc_string":"COyiILmOyiILmADACHENAPCAAAAAAAAAAAAAE5QBgALgAqgD8AQACSwEygJyAAAAAA",
"consent_language":"EN",
"purposes_consent":[],
"vendor_legitimate_interests":[],
"cmp_id":3,
"purpose_one_treatment":false,
"special_features_opt_in":[],
"last_updated":"2020-04-27T20:27:54.200000000Z",
"use_non_standard_stacks":false,
"policy_version":2,
"version":2,
"vendor_consents":[
23,
42,
126,
127,
128,
587,
613,
626
],
"is_service_specific":false,
"created":"2020-04-27T20:27:54.200000000Z",
"consent_screen":7,
"vendor_list_version":15,
"cmp_version":2,
"purposes_legitimate_interest":[],
"publisher_country_code":"AA"
"tc_string" : "COyiILmOyiILmADACHENAPCAAAAAAAAAAAAAE5QBgALgAqgD8AQACSwEygJyAAAAAA",
"consent_language" : "EN",
"purpose" : {
"consents" : [],
"legitimate_interests" : []
},
"cmp_id" : 3,
"purpose_one_treatment" : false,
"special_features_opt_in" : [],
"last_updated" : "2020-04-27T20:27:54.200000000Z",
"use_non_standard_stacks" : false,
"policy_version" : 2,
"version" : 2,
"is_service_specific" : false,
"created" : "2020-04-27T20:27:54.200000000Z",
"consent_screen" : 7,
"vendor_list_version" : 15,
"cmp_version" : 2,
"publisher_country_code" : "AA",
"vendor" : {
"consents" : [
23,
42,
126,
127,
128,
587,
613,
626
],
"legitimate_interests" : []
}
}

If L<JSON> is installed, the C<TO_JSON> method will use C<JSON::true> and C<JSON::false> as boolean value.
Expand Down
4 changes: 2 additions & 2 deletions lib/GDPR/IAB/TCFv2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use GDPR::IAB::TCFv2::BitUtils qw<is_set
use GDPR::IAB::TCFv2::PublisherRestrictions;
use GDPR::IAB::TCFv2::RangeSection;

our $VERSION = "0.08";
our $VERSION = "0.081";

use constant {
CONSENT_STRING_TCF2_SEPARATOR => '.',
Expand Down Expand Up @@ -595,7 +595,7 @@ GDPR::IAB::TCFv2 - Transparency & Consent String version 2 parser
=head1 VERSION
Version 0.08
Version 0.081
=head1 SYNOPSIS
Expand Down

0 comments on commit d2d5066

Please sign in to comment.