diff --git a/Changes b/Changes index f7fabcc..be042be 100644 --- a/Changes +++ b/Changes @@ -1,32 +1,36 @@ Revision history for JCVI-Translator +0.5.4 Apr 15 2009 + - Put use version on same line as $VERSION declared + - Added META.yml so make dist would work + 0.5.3 Apr 13 2009 - - Fixed inconsistencies in the way the start codon is being stored in the - reverse translation table - - Added test for above condition + - Fixed inconsistencies in the way the start codon is being stored in the + reverse translation table + - Added test for above condition 0.5.2 Apr 13 2009 - - Even more documentation in Utils - - codons/regex/find method in Utils can take "stop" for stop codons + - Even more documentation in Utils + - codons/regex/find method in Utils can take "stop" for stop codons 0.5.1 Apr 13 2009 - - Better documentation in Utils - - Fixed bugs in JCVI::Translator::Utils::regex and find - - Fixed load test and added new tests + - Better documentation in Utils + - Fixed bugs in JCVI::Translator::Utils::regex and find + - Fixed load test and added new tests 0.5.0 Apr 2 2009 - - Split out the table into its own package - - Split out helper translator functions into their own package + - Split out the table into its own package + - Split out helper translator functions into their own package 0.4.3 Apr 1 2009 - - Enforced that functions are called using func(@mandatory, %optional) + - Enforced that functions are called using func(@mandatory, %optional) 0.4.2 Apr 1 2009 - - Added find method into utils + - Added find method into utils 0.4.1 Mar 31 2009 - - Minor fixes in documentation - - Use "my $self = shift->SUPER::new(@_)" in constructors + - Minor fixes in documentation + - Use "my $self = shift->SUPER::new(@_)" in constructors 0.4.0 Mar 18 2009 - - Major refactor \ No newline at end of file + - Major refactor \ No newline at end of file diff --git a/lib/JCVI/Translator.pm b/lib/JCVI/Translator.pm index 7831166..723e086 100644 --- a/lib/JCVI/Translator.pm +++ b/lib/JCVI/Translator.pm @@ -66,8 +66,7 @@ package JCVI::Translator; use strict; use warnings; -use version; -our $VERSION = qv('0.5.3'); +use version; our $VERSION = qv('0.5.4'); use base qw(Class::Accessor::Fast); __PACKAGE__->mk_accessors(qw(table base));