Skip to content

Commit 01f4e0d

Browse files
committed
Administrivia...
bump version
1 parent 4df9a5f commit 01f4e0d

File tree

7 files changed

+140
-20
lines changed

7 files changed

+140
-20
lines changed

Diff for: .gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
/tmp
1111
/lib/Bio/BPWrapper/pod2htmd.tmp
1212
Bio-BPWrapper-*.tar.gz
13-
META.json
14-
META.yml
1513
ChangeLog
1614
Makefile.PL
1715
t/check-data/*.err

Diff for: .travis.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sudo: true
55
dist: bionic
66

77
env:
8-
- PREREQS="Module::Build rlib Test::More Bio::Restriction::Analysis"
8+
- PREREQS="Module::Build rlib XML::DOM::XPath Test::More Bio::Restriction::Analysis"
99

1010
after_failure:
1111
- cat /home/travis/.cpanm/work/*/build.log
@@ -21,12 +21,12 @@ script:
2121
- perl Build.PL && ./Build && ./Build test
2222

2323
perl:
24-
# - "5.30"
24+
- "5.30"
2525
- "5.26"
26-
# - "5.26"
27-
# - "5.24"
28-
# - "5.22"
29-
# - "5.20"
30-
# - "5.18"
31-
# - "5.16"
32-
# - "5.14"
26+
- "5.26"
27+
- "5.24"
28+
- "5.22"
29+
- "5.20"
30+
- "5.18"
31+
- "5.16"
32+
- "5.14"

Diff for: MANIFEST

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin/bioaln
2+
bin/biodb
23
bin/biopop
34
bin/bioseq
45
bin/biotree
@@ -96,12 +97,6 @@ test-files/test-bioaln-cat-3.aln
9697
test-files/test-bioaln-pep2dna.aln
9798
test-files/test-bioaln-pep2dna.nuc
9899
test-files/test-bioaln.aln
99-
test-files/test-bioaln.aln.slice-142.aln
100-
test-files/test-bioaln.aln.slice-239.aln
101-
test-files/test-bioaln.aln.slice-258.aln
102-
test-files/test-bioaln.aln.slice-31.aln
103-
test-files/test-bioaln.aln.slice-67.aln
104-
test-files/test-bioaln.aln.slice-91.aln
105100
test-files/test-bioaln.cds
106101
test-files/test-biopop.fas
107102
test-files/test-bioseq-leadgap.fas
@@ -121,6 +116,5 @@ test-files/test-biotree-trait-file.txt
121116
test-files/test-biotree.dnd
122117

123118
TODO.md
124-
META.json
125119
META.yml
126-
Makefile.PL
120+
META.json

Diff for: MANIFEST.SKIP

+7
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,10 @@ ChangeLog
8282
# We use Build.PL; having Makefile.PL messes things up
8383

8484
Makefile.PL
85+
codon-info-sim.pl
86+
codon-info.pl
87+
Dockerfile
88+
test-files/BbB31.cutg
89+
test-files/blast.output
90+
test-files/test-bioseq.embl
91+
test-files/test-biotree.nhx

Diff for: META.json

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"abstract" : "wrappers of popular BioPerl classes (`Bio::SeqIO`, `Bio::Seq`, `Bio::AlignIO`, `Bio::SimpleAlign",
3+
"author" : [
4+
"Y. Hernandez",
5+
"P. Pagan",
6+
"G. Ramrattan",
7+
"W.-G. Qiu",
8+
"R. Bernstein"
9+
],
10+
"dynamic_config" : 1,
11+
"generated_by" : "Module::Build version 0.4231",
12+
"license" : [
13+
"perl_5"
14+
],
15+
"meta-spec" : {
16+
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
17+
"version" : 2
18+
},
19+
"name" : "Bio-BPWrapper",
20+
"prereqs" : {
21+
"build" : {
22+
"requires" : {
23+
"rlib" : "0.02"
24+
}
25+
},
26+
"configure" : {
27+
"requires" : {
28+
"Module::Build" : "0.4214"
29+
}
30+
},
31+
"runtime" : {
32+
"requires" : {
33+
"Bio::DB::GenBank" : "0",
34+
"Bio::Restriction::Analysis" : "0",
35+
"XML::DOM::XPath" : "0.14",
36+
"perl" : "v5.14.0",
37+
"rlib" : "0.02"
38+
}
39+
},
40+
"test" : {
41+
"requires" : {
42+
"Test::More" : "0.81",
43+
"rlib" : "0.02"
44+
}
45+
}
46+
},
47+
"provides" : {
48+
"Bio::BPWrapper" : {
49+
"file" : "lib/Bio/BPWrapper.pm",
50+
"version" : "1.13"
51+
},
52+
"Bio::BPWrapper::AlnManipulations" : {
53+
"file" : "lib/Bio/BPWrapper/AlnManipulations.pm"
54+
},
55+
"Bio::BPWrapper::PopManipulations" : {
56+
"file" : "lib/Bio/BPWrapper/PopManipulations.pm"
57+
},
58+
"Bio::BPWrapper::SeqManipulations" : {
59+
"file" : "lib/Bio/BPWrapper/SeqManipulations.pm",
60+
"version" : "1.0"
61+
},
62+
"Bio::BPWrapper::TreeManipulations" : {
63+
"file" : "lib/Bio/BPWrapper/TreeManipulations.pm"
64+
}
65+
},
66+
"release_status" : "stable",
67+
"resources" : {
68+
"bugtracker" : {
69+
"web" : "https://github.com/bioperl/bp-utils/issues"
70+
},
71+
"repository" : {
72+
"url" : "https://github.com/bioperl/bp-utils"
73+
}
74+
},
75+
"version" : "1.13",
76+
"x_serialization_backend" : "JSON::PP version 4.02"
77+
}

Diff for: META.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
abstract: 'wrappers of popular BioPerl classes (`Bio::SeqIO`, `Bio::Seq`, `Bio::AlignIO`, `Bio::SimpleAlign'
3+
author:
4+
- 'Y. Hernandez'
5+
- 'P. Pagan'
6+
- 'G. Ramrattan'
7+
- 'W.-G. Qiu'
8+
- 'R. Bernstein'
9+
build_requires:
10+
Test::More: '0.81'
11+
rlib: '0.02'
12+
configure_requires:
13+
Module::Build: '0.4214'
14+
dynamic_config: 1
15+
generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
16+
license: perl
17+
meta-spec:
18+
url: http://module-build.sourceforge.net/META-spec-v1.4.html
19+
version: '1.4'
20+
name: Bio-BPWrapper
21+
provides:
22+
Bio::BPWrapper:
23+
file: lib/Bio/BPWrapper.pm
24+
version: '1.13'
25+
Bio::BPWrapper::AlnManipulations:
26+
file: lib/Bio/BPWrapper/AlnManipulations.pm
27+
Bio::BPWrapper::PopManipulations:
28+
file: lib/Bio/BPWrapper/PopManipulations.pm
29+
Bio::BPWrapper::SeqManipulations:
30+
file: lib/Bio/BPWrapper/SeqManipulations.pm
31+
version: '1.0'
32+
Bio::BPWrapper::TreeManipulations:
33+
file: lib/Bio/BPWrapper/TreeManipulations.pm
34+
requires:
35+
Bio::DB::GenBank: '0'
36+
Bio::Restriction::Analysis: '0'
37+
XML::DOM::XPath: '0.14'
38+
perl: v5.14.0
39+
rlib: '0.02'
40+
resources:
41+
bugtracker: https://github.com/bioperl/bp-utils/issues
42+
repository: https://github.com/bioperl/bp-utils
43+
version: '1.13'
44+
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Diff for: lib/Bio/BPWrapper.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
package Bio::BPWrapper;
55

6-
our $VERSION = '1.12';
6+
our $VERSION = '1.13';
77
use strict; use warnings;
88
use 5.010;
99

0 commit comments

Comments
 (0)