diff --git a/Changes.md b/Changes.md index 795c465..d990364 100644 --- a/Changes.md +++ b/Changes.md @@ -1,5 +1,17 @@ # Change Log +## [1.0.1] - 2021-06-06 + +### Fixed + +- Decreased code complexity + +- Bring version numbers in line across modules + +### Added + +- Github Actions CI + ## [1.0.0] - 2020-03-12 ### Fixed diff --git a/lib/MooX/JSON_LD.pm b/lib/MooX/JSON_LD.pm index 0ff153b..f03efad 100644 --- a/lib/MooX/JSON_LD.pm +++ b/lib/MooX/JSON_LD.pm @@ -122,7 +122,7 @@ use MRO::Compat; use List::Util qw/ all /; use Sub::Quote qw/ quote_sub /; -our $VERSION = '0.0.17'; +our $VERSION = '1.0.1'; my %Attributes; diff --git a/lib/MooX/Role/JSON_LD.pm b/lib/MooX/Role/JSON_LD.pm index b120db3..9ba7603 100644 --- a/lib/MooX/Role/JSON_LD.pm +++ b/lib/MooX/Role/JSON_LD.pm @@ -160,7 +160,7 @@ use MRO::Compat; use Types::Standard qw[ArrayRef HashRef InstanceOf Str is_CodeRef is_HashRef is_ArrayRef is_Ref is_Object]; -our $VERSION = '1.0.0'; +our $VERSION = '1.0.1'; requires qw[json_ld_type json_ld_fields];