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

New upstream version 1.7.4

parent 003f870d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
Summary of important user-visible changes for Bio-DB-SwissProt
--------------------------------------------------------------

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

1.7.3     2019-11-27 18:56:08-06:00 America/Chicago
  * First release after split from bioperl-live.
+5 −3
Original line number Diff line number Diff line
@@ -39,12 +39,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"
         }
      }
@@ -62,7 +64,7 @@
         "web" : "https://github.com/bioperl/bio-db-swissprot"
      }
   },
   "version" : "1.7.3",
   "version" : "1.7.4",
   "x_Dist_Zilla" : {
      "perl" : {
         "version" : "5.028001"
@@ -298,7 +300,7 @@
                  "branch" : null,
                  "changelog" : "Changes",
                  "signed" : 0,
                  "tag" : "Bio-DB-SwissProt-v1.7.3",
                  "tag" : "Bio-DB-SwissProt-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 to SwissProt retrieval'
author:
  - 'Jason Stajich <jason@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-swissprot/issues
  homepage: https://metacpan.org/release/Bio-DB-SwissProt
  repository: git://github.com/bioperl/bio-db-swissprot.git
version: 1.7.3
version: 1.7.4
x_Dist_Zilla:
  perl:
    version: '5.028001'
@@ -213,7 +215,7 @@ x_Dist_Zilla:
          branch: ~
          changelog: Changes
          signed: 0
          tag: Bio-DB-SwissProt-v1.7.3
          tag: Bio-DB-SwissProt-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 = (
    "strict" => 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,14 +41,16 @@ my %WriteMakefileArgs = (

my %FallbackPrereqs = (
  "Bio::DB::WebDBSeqI" => 0,
  "Bio::Root::Test" => 0,
  "File::Spec" => 0,
  "HTTP::Request::Common" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Test::More" => 0,
  "Test::Needs" => 0,
  "Test::RequiresInternet" => 0,
  "base" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);

+1 −1
Original line number Diff line number Diff line
name = Bio-DB-SwissProt
version = 1.7.3
version = 1.7.4
author = Jason Stajich <jason@bioperl.org>
copyright_holder = Jason Stajich <jason@bioperl.org>
license = Perl_5
Loading