Skip to content

Commit

Permalink
Bump version: 1.3.0 → 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiakumis committed Mar 8, 2023
1 parent f94e93c commit 65d8da7
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.4.0
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_conda_recipes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
recipe_path: conda/recipe
env_yml_path: conda/env/yml
env_lock_path: conda/env/lock
VERSION: '1.3.0' # versioned by bump2version
VERSION: '1.4.0' # versioned by bump2version
jobs:
build_conda_pkgs:
# When merging to one of the branches above and the commit message matches
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yml/pcgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ channels:
- defaults

dependencies:
- pcgr ==1.3.0 # versioned by bump2version
- pcgr ==1.4.0 # versioned by bump2version
- bedtools ==2.30.0
- bcftools ==1.10.2
- cyvcf2 ==0.30.11
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yml/pcgrr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ channels:

dependencies:
- python
- r-pcgrr ==1.3.0 # versioned by bump2version
- r-pcgrr ==1.4.0 # versioned by bump2version
- r-cpsr
- r-argparse
- bioconductor-bsgenome.hsapiens.ucsc.hg38
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yml/pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pkgdown
dependencies:
- r-pcgrr ==1.3.0 # versioned by bump2version
- r-pcgrr ==1.4.0 # versioned by bump2version
- r-cpsr
- r-pkgdown
- r-readr
Expand Down
2 changes: 1 addition & 1 deletion conda/recipe/pcgrr/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: r-pcgrr
version: 1.3.0 # versioned by bump2version
version: 1.4.0 # versioned by bump2version

source:
path: ../../../pcgrr
Expand Down
2 changes: 1 addition & 1 deletion pcgr/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# versioned by bump2version
__version__ = '1.3.0'
__version__ = '1.4.0'
2 changes: 1 addition & 1 deletion pcgrr/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pcgrr
Type: Package
Title: Personal Cancer Genome ReporteR
Version: 1.3.0
Version: 1.4.0
Date: 2022-03-30
Authors@R:
c(person(given = "Sigve",
Expand Down
6 changes: 3 additions & 3 deletions pcgrr/vignettes/installation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ output: rmarkdown::html_document
software requirements:

```bash
PCGR_VERSION="1.3.0"
PCGR_VERSION="1.4.0"
PCGR_REPO="https://raw.githubusercontent.com/sigven/pcgr/v${PCGR_VERSION}/conda/env/lock/"
PLATFORM="linux" # or "osx"

Expand Down Expand Up @@ -79,7 +79,7 @@ Download and unpack the latest software release from <https://github.com/sigven/
Alternatively if you have `git` installed, you can do:
```bash
PCGR_VERSION="1.3.0"
PCGR_VERSION="1.4.0"
OUTPUT_DIRECTORY="PCGR"
git clone \
Expand Down Expand Up @@ -235,7 +235,7 @@ docker container run -it --rm \
-v /Users/you/dir1/data:/root/pcgr_data \
-v /Users/you/dir2/pcgr_inputs:/root/pcgr_inputs \
-v /Users/you/dir3/pcgr_outputs:/root/pcgr_outputs \
sigven/pcgr:1.3.0 \
sigven/pcgr:1.4.0 \
pcgr \
--input_vcf "/root/pcgr_inputs/tumor_sample.BRCA.vcf.gz" \
--pcgr_dir "/root/pcgr_data" \
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name='pcgr',
version='1.3.0', # versioned by bump2version
version='1.4.0', # versioned by bump2version
license='MIT',
author='Sigve Nakken',
author_email='sigven@gmail.com',
Expand Down

0 comments on commit 65d8da7

Please sign in to comment.