From fe4f4ae75bdb3cecc63e8c9ec2387971cb087c2a Mon Sep 17 00:00:00 2001 From: Dave Cross Date: Tue, 12 Nov 2024 12:48:09 +0000 Subject: [PATCH] Release 0.0.10 --- Changes.md | 6 ++++++ lib/App/LinkSite.pm | 2 +- lib/App/LinkSite/Link.pm | 2 +- lib/App/LinkSite/Site.pm | 2 +- lib/App/LinkSite/Social.pm | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Changes.md b/Changes.md index f6c9b90..80f110b 100644 --- a/Changes.md +++ b/Changes.md @@ -1,5 +1,11 @@ # Change Log +## [0.0.10] - 2024-11-12 + +### Fixed + +- A stupid typo + ## [0.0.9] - 2024-11-12 ### Fixed diff --git a/lib/App/LinkSite.pm b/lib/App/LinkSite.pm index daabf23..ea834eb 100755 --- a/lib/App/LinkSite.pm +++ b/lib/App/LinkSite.pm @@ -15,7 +15,7 @@ The main driver class for App::LinkSite. use Feature::Compat::Class; class App::LinkSite { - our $VERSION = '0.0.9'; + our $VERSION = '0.0.10'; use strict; use warnings; use feature qw[say signatures]; diff --git a/lib/App/LinkSite/Link.pm b/lib/App/LinkSite/Link.pm index bc9f9ed..73e902c 100644 --- a/lib/App/LinkSite/Link.pm +++ b/lib/App/LinkSite/Link.pm @@ -15,7 +15,7 @@ A class to model a link on a link site (part of App::LinkSite). use Feature::Compat::Class; class App::LinkSite::Link { - our $VERSION = '0.0.9'; + our $VERSION = '0.0.10'; use strict; use warnings; no if $] >= 5.038, 'warnings', 'experimental::class'; diff --git a/lib/App/LinkSite/Site.pm b/lib/App/LinkSite/Site.pm index 123ebe6..46c4100 100644 --- a/lib/App/LinkSite/Site.pm +++ b/lib/App/LinkSite/Site.pm @@ -15,7 +15,7 @@ A class to model a link site (part of App::LinkSite). use Feature::Compat::Class; class App::LinkSite::Site { - our $VERSION = '0.0.9'; + our $VERSION = '0.0.10'; use strict; use warnings; no if $] >= 5.038, 'warnings', 'experimental::class'; diff --git a/lib/App/LinkSite/Social.pm b/lib/App/LinkSite/Social.pm index ee28b41..1efe00b 100644 --- a/lib/App/LinkSite/Social.pm +++ b/lib/App/LinkSite/Social.pm @@ -15,7 +15,7 @@ A class to model a social link on a link site (part of App::LinkSite). use Feature::Compat::Class; class App::LinkSite::Social { - our $VERSION = '0.0.9'; + our $VERSION = '0.0.10'; use strict; use warnings; use feature qw[say signatures];