... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
Package: ggtree |
2 | 2 |
Type: Package |
3 | 3 |
Title: an R package for visualization of tree and annotation data |
4 |
-Version: 3.5.3.002 |
|
4 |
+Version: 3.7.0 |
|
5 | 5 |
Authors@R: c( |
6 | 6 |
person("Guangchuang", "Yu", email = "guangchuangyu@gmail.com", role = c("aut", "cre", "cph"), |
7 | 7 |
comment = c(ORCID = "0000-0002-6485-8781")), |
... | ... |
@@ -1,3 +1,4 @@ |
1 |
+ |
|
1 | 2 |
<!-- |
2 | 3 |
|
3 | 4 |
# TODO LIST |
... | ... |
@@ -25,13 +26,15 @@ |
25 | 26 |
|
26 | 27 |
--> |
27 | 28 |
|
28 |
-# ggtree 3.5.3.002 |
|
29 | 29 |
|
30 |
-+ add new citation (the iMeta 2022 paper) (2022-09-26, Mon) |
|
31 |
-+ move `scale_color_subtree()` to the 'ggtreeDendro' package (2022-09-23, Fri) |
|
30 |
+# ggtree 3.6.0 |
|
31 |
+ |
|
32 |
++ Bioconductor RELEASE_3_16 (2022-11-02, Wed) |
|
32 | 33 |
|
33 | 34 |
# ggtree 3.5.3 |
34 | 35 |
|
36 |
++ add new citation (the iMeta 2022 paper) (2022-09-26, Mon) |
|
37 |
++ move `scale_color_subtree()` to the 'ggtreeDendro' package (2022-09-23, Fri) |
|
35 | 38 |
+ update `fortify` method for `pvclust` object (2022-08-15, Mon) |
36 | 39 |
+ add citation of the tree data book (2022-08-13, Sat) |
37 | 40 |
|
... | ... |
@@ -1,5 +1,6 @@ |
1 | 1 |
#!/bin/bash |
2 | 2 |
|
3 |
+pkg=$(basename `pwd`) |
|
3 | 4 |
oldver=RELEASE_3_15 |
4 | 5 |
newver=RELEASE_3_16 |
5 | 6 |
|
... | ... |
@@ -12,6 +13,12 @@ make update |
12 | 13 |
## set current release version |
13 | 14 |
sed -i "s/$oldver/$newver/g" Makefile |
14 | 15 |
|
16 |
+## add release in NEWS.md |
|
17 |
+echo "# $pkg\n\n+ Bioconductor $newver ($(date +'%Y-%m-%d, %a'))\n\n" > tmp.md |
|
18 |
+cat NEWS.md >> tmp.md |
|
19 |
+mv tmp.md NEWS.md |
|
20 |
+ |
|
21 |
+ |
|
15 | 22 |
## commit and push to github |
16 | 23 |
git add . |
17 | 24 |
git commit -m 'update bioc version' |