From 2aad066d4a05ca8ed729c41616a194571f19c6df Mon Sep 17 00:00:00 2001 From: Dave Cross Date: Sun, 6 Jun 2021 16:49:20 +0100 Subject: [PATCH] Prep for release --- Changes.md | 12 ++++++++++++ lib/MooX/JSON_LD.pm | 2 +- lib/MooX/Role/JSON_LD.pm | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) 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];