From: tla Date: Sat, 6 Dec 2014 23:58:52 +0000 (+0100) Subject: Release a new CPAN version of Analysis X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3d71549f12b79bbda2934bfc85f24b676a401d1a;p=scpubgit%2Fstemmatology.git Release a new CPAN version of Analysis --- diff --git a/analysis/CHANGES b/analysis/CHANGES index be54513..c5f3f15 100644 --- a/analysis/CHANGES +++ b/analysis/CHANGES @@ -1,8 +1,19 @@ -*** 1.2 *** +=== Version 2.0.0 === + +Support for the specification of an IDP solver URL +Support for the specification of a local path to the 'pars' executable +Support for integration with Stemweb phylogenetic analysis +Allow stemmata to have meaningful names +Handle the existence of undirected stemma graphs +Catch bad Dot input for new / edited stemma graphs +Return extra information in Analysis data structure +Various and sundry bugfixes and improvements + +=== Version 1.2 === Adopt more generalized relationship scheme in Text::Tradition 1.2 Tweaks to analysis routines -*** 1.1 *** +=== Version 1.1 === Initial release diff --git a/analysis/MANIFEST.SKIP b/analysis/MANIFEST.SKIP index 7bbe00a..518023a 100644 --- a/analysis/MANIFEST.SKIP +++ b/analysis/MANIFEST.SKIP @@ -1,2 +1,3 @@ idp_server script +lib/Text/Tradition/Analysis/IDPUtil.pm diff --git a/analysis/Makefile.PL b/analysis/Makefile.PL index 7922589..dcc0520 100644 --- a/analysis/Makefile.PL +++ b/analysis/Makefile.PL @@ -19,7 +19,7 @@ requires( 'LWP::UserAgent' ); requires( 'Moose' ); requires( 'Moose::Role' ); requires( 'Set::Scalar' ); -requires( 'Text::Tradition' => '1.2' ); +requires( 'Text::Tradition' => '2.0.0' ); requires( 'Text::Tradition::Error' ); requires( 'TryCatch' ); diff --git a/analysis/lib/Text/Tradition/Analysis.pm b/analysis/lib/Text/Tradition/Analysis.pm index 290b5cc..24e827d 100644 --- a/analysis/lib/Text/Tradition/Analysis.pm +++ b/analysis/lib/Text/Tradition/Analysis.pm @@ -15,7 +15,7 @@ use TryCatch; use vars qw/ @EXPORT_OK $VERSION /; @EXPORT_OK = qw/ run_analysis group_variants analyze_variant_location wit_stringify /; -$VERSION = "1.3"; +$VERSION = "2.0.0"; my $DEFAULT_SOLVER_URL = 'http://perf.byzantini.st/cgi-bin/graphcalc.cgi';