Commit 6e579f8a authored by Michael R. Crusoe's avatar Michael R. Crusoe 🏳️‍🌈
Browse files

New upstream version 1.7.4

parent 3171e9a8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
Summary of important user-visible changes for Bio-DB-RefSeq
-----------------------------------------------------------

1.7.4     2019-12-07 16:09:01-06:00 America/Chicago
  * Fixes for issues related to using Bio::Root::Test (issue #3)

1.7.3     2019-11-28 00:44:59-06:00 America/Chicago
  * First release after split from bioperl-live
  * Address database connection failures (issue #2). Works for nucleotide 
+5 −3
Original line number Diff line number Diff line
@@ -37,12 +37,14 @@
      },
      "test" : {
         "requires" : {
            "Bio::Root::Test" : "0",
            "File::Spec" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Test::More" : "0",
            "Test::Needs" : "0",
            "Test::RequiresInternet" : "0",
            "perl" : "5.006",
            "utf8" : "0",
            "warnings" : "0"
         }
      }
@@ -60,7 +62,7 @@
         "web" : "https://github.com/bioperl/bio-db-refseq"
      }
   },
   "version" : "1.7.3",
   "version" : "1.7.4",
   "x_Dist_Zilla" : {
      "perl" : {
         "version" : "5.028001"
@@ -280,7 +282,7 @@
                  "branch" : null,
                  "changelog" : "Changes",
                  "signed" : 0,
                  "tag" : "Bio-DB-RefSeq-v1.7.3",
                  "tag" : "Bio-DB-RefSeq-v1.7.4",
                  "tag_format" : "%N-v%v",
                  "tag_message" : "%N-v%v"
               },
+5 −3
Original line number Diff line number Diff line
@@ -3,12 +3,14 @@ abstract: 'Database object interface for RefSeq retrieval'
author:
  - 'Heikki Lehvaslaiho <heikki@bioperl.org>'
build_requires:
  Bio::Root::Test: '0'
  File::Spec: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Test::More: '0'
  Test::Needs: '0'
  Test::RequiresInternet: '0'
  perl: '5.006'
  utf8: '0'
  warnings: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
@@ -28,7 +30,7 @@ resources:
  bugtracker: https://github.com/bioperl/bio-db-refseq/issues
  homepage: https://metacpan.org/release/Bio-DB-RefSeq
  repository: git://github.com/bioperl/bio-db-refseq.git
version: 1.7.3
version: 1.7.4
x_Dist_Zilla:
  perl:
    version: '5.028001'
@@ -201,7 +203,7 @@ x_Dist_Zilla:
          branch: ~
          changelog: Changes
          signed: 0
          tag: Bio-DB-RefSeq-v1.7.3
          tag: Bio-DB-RefSeq-v1.7.4
          tag_format: '%N-v%v'
          tag_message: '%N-v%v'
        Dist::Zilla::Role::Git::Repo:
+7 −3
Original line number Diff line number Diff line
@@ -23,14 +23,16 @@ my %WriteMakefileArgs = (
    "vars" => 0
  },
  "TEST_REQUIRES" => {
    "Bio::Root::Test" => 0,
    "File::Spec" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Test::More" => 0,
    "Test::Needs" => 0,
    "Test::RequiresInternet" => 0,
    "utf8" => 0,
    "warnings" => 0
  },
  "VERSION" => "1.7.3",
  "VERSION" => "1.7.4",
  "test" => {
    "TESTS" => "t/*.t"
  }
@@ -39,13 +41,15 @@ my %WriteMakefileArgs = (

my %FallbackPrereqs = (
  "Bio::DB::DBFetch" => 0,
  "Bio::Root::Test" => 0,
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Test::More" => 0,
  "Test::Needs" => 0,
  "Test::RequiresInternet" => 0,
  "base" => 0,
  "strict" => 0,
  "utf8" => 0,
  "vars" => 0,
  "warnings" => 0
);
+1 −1
Original line number Diff line number Diff line
name = Bio-DB-RefSeq
version = 1.7.3
version = 1.7.4
author = Heikki Lehvaslaiho <heikki@bioperl.org>
copyright_holder = Heikki Lehvaslaiho <heikki@bioperl.org>
license = Perl_5
Loading