Skip to content

Commit

Permalink
Bump version: 0.0.4 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiakumis committed Jun 10, 2022
1 parent f66d557 commit 44a38ef
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 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 = 0.0.4
current_version = 0.1.0
commit = True

[bumpversion:file:DESCRIPTION]
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
recipe_path: conda/recipe
env_yaml_path: conda/env/yaml
env_lock_path: conda/env/lock
VERSION: '0.0.4' # versioned by bump2version
VERSION: '0.1.0' # versioned by bump2version
GDRIVE_CREDENTIALS_DATA: ${{ secrets.GDRIVE_CREDENTIALS_DATA }}

jobs:
Expand All @@ -36,10 +36,8 @@ jobs:
- name: 🐍 Conda pkg build and upload
run: |
conda activate
mamba create --name cbuildenv conda-build conda-verify anaconda-client boa dvc dvc-gdrive
mamba create --name cbuildenv conda-build conda-verify anaconda-client boa
conda activate cbuildenv
dvc pull
ls -l inst/extdata/*
conda mambabuild --R 4.1 ${recipe_path} --token ${atoken}
- name: 🔒 Conda lock
run: |
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: sigrap
Title: Wrappers for somatic mutation signature analysis tools
Version: 0.0.4
Version: 0.1.0
Description: Wraps functionality from somatic signature analysis tools.
Authors@R:
person(given = "Peter",
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# sigrap dev

# sigrap 0.1.0 (2022-06-10)

- :star: Add Docker support ([pr6](https://github.com/umccr/sigrap/pull/6)).
- :star: Add conda-lock support ([pr6](https://github.com/umccr/sigrap/pull/6)).
- :star: Modularise CLI

# sigrap 0.0.4 (2022-06-07)

- :star: Update to `{signature.tools.lib}` v2.1.2
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.4"
echo "sigrap.R 0.1.0"
echo ""
echo "$ sigrap.R --help"
sigrap.R --help
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export PATH="${sigrap_cli}:${PATH}"
```

$ sigrap.R --version
sigrap.R 0.0.4
sigrap.R 0.1.0

$ sigrap.R --help
usage: sigrap [-h] [-v] {hrdetect,chord,mutpat} ...
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yaml/sigrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ channels:
- bioconda

dependencies:
- r-sigrap ==0.0.4 # versioned by bump2version
- r-sigrap ==0.1.0 # versioned by bump2version
2 changes: 1 addition & 1 deletion conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: r-sigrap
version: 0.0.4 # bump2version
version: 0.1.0 # bump2version

source:
path: ../..
Expand Down

0 comments on commit 44a38ef

Please sign in to comment.