diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1daedd9..ff039ad 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True [bumpversion:file:DESCRIPTION] diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index aa3ea8b..a8f3ab9 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -9,7 +9,7 @@ env: recipe_path: conda/recipe env_yaml_path: conda/env/yaml env_lock_path: conda/env/lock - VERSION: '0.1.0' # versioned by bump2version + VERSION: '0.1.1' # versioned by bump2version GDRIVE_CREDENTIALS_DATA: ${{ secrets.GDRIVE_CREDENTIALS_DATA }} jobs: diff --git a/DESCRIPTION b/DESCRIPTION index 349d6eb..b7d84be 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: sigrap Title: Wrappers for somatic mutation signature analysis tools -Version: 0.1.0 +Version: 0.1.1 Description: Wraps functionality from somatic signature analysis tools. Authors@R: person(given = "Peter", diff --git a/README.Rmd b/README.Rmd index eed57c9..2b6ebf5 100644 --- a/README.Rmd +++ b/README.Rmd @@ -75,7 +75,7 @@ sigrap_cli=$(Rscript -e 'x = system.file("cli", package = "sigrap"); cat(x, "\n" export PATH="${sigrap_cli}:${PATH}" echo "$ sigrap.R --version" -echo "sigrap.R 0.1.0" +echo "sigrap.R 0.1.1" echo "" echo "$ sigrap.R --help" sigrap.R --help diff --git a/README.md b/README.md index 90ee0b8..04ecb45 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ export PATH="${sigrap_cli}:${PATH}" ``` $ sigrap.R --version - sigrap.R 0.1.0 + sigrap.R 0.1.1 $ sigrap.R --help usage: sigrap [-h] [-v] {hrdetect,chord,mutpat} ... diff --git a/conda/env/yaml/sigrap.yaml b/conda/env/yaml/sigrap.yaml index 6f6bbf9..56a4f90 100644 --- a/conda/env/yaml/sigrap.yaml +++ b/conda/env/yaml/sigrap.yaml @@ -6,4 +6,4 @@ channels: - bioconda dependencies: - - r-sigrap ==0.1.0 # versioned by bump2version + - r-sigrap ==0.1.1 # versioned by bump2version diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml index 2880b18..9cec216 100644 --- a/conda/recipe/meta.yaml +++ b/conda/recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: r-sigrap - version: 0.1.0 # bump2version + version: 0.1.1 # bump2version source: path: ../..