From 73c6346dd3416a5637e9d03b3bca1941b6cccd0d Mon Sep 17 00:00:00 2001 From: Nigel Horne Date: Thu, 8 Feb 2024 09:03:56 -0500 Subject: [PATCH] Release 0.11 --- Changes | 2 +- README.md | 12 +++++++++--- lib/Genealogy/ObituaryDailyTimes.pm | 4 ++-- t/obituaries.t | 3 +++ 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index d128029..c471233 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Genealogy::ObituaryDailyTimes -0.11 +0.11 Thu Feb 8 09:03:49 EST 2024 Added first, last, age as an index Renamed database to data Use Database::Abstraction diff --git a/README.md b/README.md index f2f64b8..952b6f8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Genealogy::ObituaryDailyTimes - Lookup an entry in the Obituary Daily Times # VERSION -Version 0.10 +Version 0.11 # SYNOPSIS @@ -45,9 +45,15 @@ Nigel Horne, `` # BUGS +Ancestry has removed the archives. +The first 17 pages are on Wayback machine, but the rest is lost. + # SEE ALSO -The Obituary Daily Times, [https://sites.rootsweb.com/~obituary/](https://sites.rootsweb.com/~obituary/) +The Obituary Daily Times, [https://sites.rootsweb.com/~obituary/](https://sites.rootsweb.com/~obituary/), +Archived Rootsweb data, [https://wayback.archive-it.org/20669/20231102044925/https://mlarchives.rootsweb.com/listindexes/emails?listname=gen-obit](https://wayback.archive-it.org/20669/20231102044925/https://mlarchives.rootsweb.com/listindexes/emails?listname=gen-obit), +Recent data [https://www.freelists.org/list/obitdailytimes](https://www.freelists.org/list/obitdailytimes), +Older data [https://obituaries.rootsweb.com/obits/searchObits](https://obituaries.rootsweb.com/obits/searchObits). # SUPPORT @@ -75,6 +81,6 @@ You can also look for information at: # LICENSE AND COPYRIGHT -Copyright 2020-2023 Nigel Horne. +Copyright 2020-2024 Nigel Horne. This program is released under the following licence: GPL2 diff --git a/lib/Genealogy/ObituaryDailyTimes.pm b/lib/Genealogy/ObituaryDailyTimes.pm index 5262b3f..e06502c 100644 --- a/lib/Genealogy/ObituaryDailyTimes.pm +++ b/lib/Genealogy/ObituaryDailyTimes.pm @@ -13,11 +13,11 @@ Genealogy::ObituaryDailyTimes - Lookup an entry in the Obituary Daily Times =head1 VERSION -Version 0.10 +Version 0.11 =cut -our $VERSION = '0.10'; +our $VERSION = '0.11'; =head1 SYNOPSIS diff --git a/t/obituaries.t b/t/obituaries.t index 2599b5b..1ee6c4c 100644 --- a/t/obituaries.t +++ b/t/obituaries.t @@ -32,6 +32,9 @@ SKIP: { # FIXME, test either last == Smith or maiden == Smith is($smiths[0]->{'last'}, 'Smith', 'Returned Smiths'); + unless($ENV{'MLARCHIVEDIR'} || ($ENV{'MLARCHIVE_DIR'})) { + diag('The next test may fail since Rootsweb was partially archived on Wayback Machine'); + } my $baal = $search->search({ first => 'Eric', last => 'Baal' }); ok(defined($baal));