Skip to content

Commit 0fcf5ca

Browse files
committed
BioRuby 2.0.6 is released
1 parent a5fdb47 commit 0fcf5ca

File tree

1 file changed

+146
-0
lines changed

1 file changed

+146
-0
lines changed

ChangeLog

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,149 @@
1+
commit a5fdb471873ec9f9f11eea627d76dbd4c2e4efc5
2+
Author: Naohisa Goto <ng@bioruby.org>
3+
Date: Fri Mar 7 18:26:32 2025 +0900
4+
5+
ruby.yml: update ruby versions and other descriptions
6+
7+
.github/workflows/ruby.yml | 23 +++++++----------------
8+
1 file changed, 7 insertions(+), 16 deletions(-)
9+
10+
commit 98c24b6ed9fb508b5bfc72ff965fb77e0ec7c35d
11+
Author: Naohisa Goto <ng@bioruby.org>
12+
Date: Fri Mar 7 16:58:56 2025 +0900
13+
14+
change recommended Ruby versions
15+
16+
README.rdoc | 2 +-
17+
1 file changed, 1 insertion(+), 1 deletion(-)
18+
19+
commit 948377e3fa198e24ac2655f924b903f5296b4955
20+
Author: Naohisa Goto <ng@bioruby.org>
21+
Date: Fri Mar 7 16:55:20 2025 +0900
22+
23+
update release notes for upcoming BioRuby 2.0.6
24+
25+
RELEASE_NOTES.rdoc | 28 ++++++++++++++++++++++++++++
26+
1 file changed, 28 insertions(+)
27+
28+
commit 123910e5d18caa247c40ecede67015c2e23c0538
29+
Author: Naohisa Goto <ng@bioruby.org>
30+
Date: Fri Mar 7 16:25:44 2025 +0900
31+
32+
regenerate bioruby.gemspec with rake regemspec
33+
34+
bioruby.gemspec | 4 +++-
35+
1 file changed, 3 insertions(+), 1 deletion(-)
36+
37+
commit 6c110b23d446f5926579a8e92b260a71948689eb
38+
Author: Naohisa Goto <ng@bioruby.org>
39+
Date: Fri Mar 7 16:20:26 2025 +0900
40+
41+
prepare for BioRuby 2.0.6 release
42+
43+
lib/bio/version.rb | 2 +-
44+
1 file changed, 1 insertion(+), 1 deletion(-)
45+
46+
commit 5c39d4c6a56c4fd2dc108d3350e9f60f26591ac4
47+
Author: Naohisa Goto <ng@bioruby.org>
48+
Date: Fri Mar 7 16:14:13 2025 +0900
49+
50+
Fix test failure due to data changes of the KEGG databases
51+
52+
test/network/bio/db/kegg/test_genes_hsa7422.rb | 18 ++++++++----------
53+
1 file changed, 8 insertions(+), 10 deletions(-)
54+
55+
commit 6f314341e303c25385027355c3365cf0a0d2ef9a
56+
Author: Naohisa Goto <ng@bioruby.org>
57+
Date: Fri Mar 7 03:56:27 2025 +0900
58+
59+
Ruby 3.4 support: Use URI::RFC2396_PARSER if possible.
60+
61+
* Suppress warning: "URI::RFC3986_PARSER.unescape is obsolete.
62+
Use URI::RFC2396_PARSER.unescape explicitly." shown in Ruby 3.4.
63+
64+
lib/bio/db/gff.rb | 7 ++++++-
65+
1 file changed, 6 insertions(+), 1 deletion(-)
66+
67+
commit d9b83a068fbf061c7b8072e7ab2479509f9ba130
68+
Author: Naohisa Goto <ng@bioruby.org>
69+
Date: Fri Mar 7 03:18:10 2025 +0900
70+
71+
Bug fix: Bio::PROSITE.pa2re should not modify argument string
72+
73+
* For suppressing "literal string will be frozen in the future" warning
74+
in Ruby 3.4, Bio::PROSITE.pa2re(string) is changed not to modify
75+
the given string in the argument. Modifying argument objects by a method
76+
should generally be avoided because this behavior may cause subtle bugs
77+
and I think this behavior is a bug.
78+
79+
lib/bio/db/prosite.rb | 2 ++
80+
1 file changed, 2 insertions(+)
81+
82+
commit cca91ac0fa39d63b85a28d72e9b2afb56a40b984
83+
Author: Naohisa Goto <ng@bioruby.org>
84+
Date: Fri Mar 7 03:07:11 2025 +0900
85+
86+
Ruby 3.4 support: suppress "literal string will be frozen" warnings
87+
88+
* Suppress "literal string will be frozen in the future" warning messages
89+
in Ruby 3.4.
90+
* Add "frozen_string_literal: true" magic comment in each file.
91+
92+
lib/bio/appl/clustalw/report.rb | 5 ++--
93+
lib/bio/appl/iprscan/report.rb | 3 +-
94+
lib/bio/appl/meme/mast.rb | 3 +-
95+
lib/bio/appl/paml/common.rb | 3 +-
96+
lib/bio/db.rb | 9 +++---
97+
lib/bio/db/embl/common.rb | 7 +++--
98+
lib/bio/db/fastq.rb | 5 ++--
99+
lib/bio/db/gff.rb | 15 +++++-----
100+
lib/bio/db/newick.rb | 11 ++++----
101+
lib/bio/db/pdb/chain.rb | 3 +-
102+
lib/bio/db/pdb/pdb.rb | 3 +-
103+
lib/bio/io/flatfile/buffer.rb | 3 +-
104+
lib/bio/io/flatfile/splitter.rb | 3 +-
105+
lib/bio/pathway.rb | 3 +-
106+
lib/bio/sequence/common.rb | 3 +-
107+
.../range/sequence_range/fragment.rb | 5 ++--
108+
lib/bio/util/sirna.rb | 5 ++--
109+
test/unit/bio/appl/iprscan/test_report.rb | 5 ++--
110+
test/unit/bio/io/flatfile/test_splitter.rb | 11 +++++---
111+
test/unit/bio/sequence/test_common.rb | 5 ++--
112+
test/unit/bio/test_alignment.rb | 33 +++++++++++-----------
113+
test/unit/bio/test_sequence.rb | 5 ++--
114+
22 files changed, 87 insertions(+), 61 deletions(-)
115+
116+
commit 89129b6045ebda95363e58f8724e30225aa62d27
117+
Author: Naohisa Goto <ng@bioruby.org>
118+
Date: Fri Aug 30 16:32:33 2024 +0900
119+
120+
Add Tutorial.md and Tutorial_ja.md
121+
converted from Tutorial.rd and Tutorial.rd.ja
122+
123+
* Add Tutorial.md and Tutorial_ja.md converted
124+
from Tutorial.rd and Tutorial.rd.ja
125+
by using customized rd2markdown
126+
(https://github.com/ngoto/rd2markdown-app )
127+
* The following command line is used
128+
(Note: rd2markdown-app repository is downloaded to ../tmp):
129+
$ env RUBYLIB=../tmp/rd2markdown-app/lib \
130+
rd2 -r rd/rd2markdown-lib.rb Tutorial.rd > Tutorial.md
131+
132+
doc/Tutorial.md | 1274 ++++++++++++++++++++++++++
133+
doc/Tutorial_ja.md | 2595 ++++++++++++++++++++++++++++++++++++++++++++++++++++
134+
2 files changed, 3869 insertions(+)
135+
create mode 100644 doc/Tutorial.md
136+
create mode 100644 doc/Tutorial_ja.md
137+
138+
commit 7a1809f1e8b45fa8e38a6c8970b6319d04fa800e
139+
Author: Naohisa Goto <ng@bioruby.org>
140+
Date: Wed Sep 27 23:09:03 2023 +0900
141+
142+
BioRuby 2.0.5 is released
143+
144+
ChangeLog | 287 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
145+
1 file changed, 287 insertions(+)
146+
1147
commit 1bf3a415b694e34f112ed082184c5bdf21157d3b
2148
Author: Naohisa Goto <ng@bioruby.org>
3149
Date: Wed Sep 27 22:54:17 2023 +0900

0 commit comments

Comments
 (0)