Skip to content

Commit 0c795c0

Browse files
committed
Bump version: 1.4.1.9021 → 2.0.0
1 parent a9096c3 commit 0c795c0

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.1.9021
2+
current_version = 2.0.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<dev>\d+))?

.github/workflows/build_conda_recipes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
recipe_path: conda/recipe
1111
env_yml_path: conda/env/yml
1212
env_lock_path: conda/env/lock
13-
VERSION: '1.4.1.9021' # versioned by bump2version
13+
VERSION: '2.0.0' # versioned by bump2version
1414
jobs:
1515
build_pcgrr_conda_pkg:
1616
# When merging to one of the branches above and the commit message matches

conda/env/yml/pcgr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ channels:
66
- conda-forge
77

88
dependencies:
9-
- pcgr::pcgr ==1.4.1.9021 # versioned by bump2version
9+
- pcgr::pcgr ==2.0.0 # versioned by bump2version
1010
- bedtools
1111
- bcftools
1212
- cyvcf2

conda/env/yml/pcgrr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77

88
dependencies:
99
- python
10-
- pcgr::r-pcgrr ==1.4.1.9021 # versioned by bump2version
10+
- pcgr::r-pcgrr ==2.0.0 # versioned by bump2version
1111
- pcgr::r-cpsr
1212
- r-argparse
1313
- bioconductor-bsgenome.hsapiens.ucsc.hg38

conda/env/yml/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- bioconda
55
- conda-forge
66
dependencies:
7-
- pcgr::r-pcgrr ==1.4.1.9021 # versioned by bump2version
7+
- pcgr::r-pcgrr ==2.0.0 # versioned by bump2version
88
- r-pkgdown
99
- r-readr
1010
- r-glue

conda/recipe/pcgr/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pcgr
3-
version: 1.4.1.9021 # versioned by bump2version
3+
version: 2.0.0 # versioned by bump2version
44

55
source:
66
path: ../../..

conda/recipe/pcgrr/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: r-pcgrr
3-
version: 1.4.1.9021 # versioned by bump2version
3+
version: 2.0.0 # versioned by bump2version
44

55
source:
66
path: ../../../pcgrr

pcgr/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# versioned by bump2version
2-
__version__ = '1.4.1.9021'
2+
__version__ = '2.0.0'

pcgrr/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: pcgrr
22
Type: Package
33
Title: Personal Cancer Genome ReporteR
4-
Version: 1.4.1.9021
4+
Version: 2.0.0
55
Authors@R:
66
c(person(given = "Sigve",
77
family = "Nakken",

pcgrr/vignettes/installation.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require(glue, include.only = "glue")
1515

1616
```{r vars, echo=FALSE}
1717
Sys.setenv(VEP_VERSION = "112")
18-
Sys.setenv(PCGR_VERSION = "1.4.1.9021")
18+
Sys.setenv(PCGR_VERSION = "2.0.0")
1919
Sys.setenv(BUNDLE_VERSION = "20240621")
2020
VEP_VERSION <- Sys.getenv("VEP_VERSION")
2121
PCGR_VERSION <- Sys.getenv("PCGR_VERSION")

0 commit comments

Comments
 (0)