Skip to content

Commit

Permalink
bump version to 1.3.0dev
Browse files Browse the repository at this point in the history
  • Loading branch information
d4straub committed Feb 4, 2021
1 parent 89110de commit 5152da0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
- name: Build new docker image
if: env.MATCHED_FILES
run: docker build --no-cache . -t nfcore/ampliseq:1.2.0
run: docker build --no-cache . -t nfcore/ampliseq:dev

- name: Pull docker image
if: ${{ !env.MATCHED_FILES }}
run: |
docker pull nfcore/ampliseq:dev
docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.2.0
docker tag nfcore/ampliseq:dev nfcore/ampliseq:dev
- name: Install Nextflow
env:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## nf-core/ampliseq version 1.3.0dev

### `Added`

### `Fixed`

### `Dependencies`

### `Deprecated`

## nf-core/ampliseq version 1.2.0 "Teal Bronze Lion" - 2021

### `Added`
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ COPY environment.yml /
RUN conda env create --quiet -f /environment.yml && conda clean -a

# Add conda installation dir to PATH (instead of doing 'conda activate')
ENV PATH /opt/conda/envs/nf-core-ampliseq-1.2.0/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-ampliseq-1.3.0dev/bin:$PATH

# Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-ampliseq-1.2.0 > nf-core-ampliseq-1.2.0.yml
RUN conda env export --name nf-core-ampliseq-1.3.0dev > nf-core-ampliseq-1.3.0dev.yml

# Instruct R processes to use these empty files instead of clashing with a local version
RUN touch .Rprofile
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# You can use this file to create a conda environment for this pipeline:
# conda env create -f environment.yml
name: nf-core-ampliseq-1.2.0
name: nf-core-ampliseq-1.3.0dev
channels:
- qiime2
- qiime2/label/r2019.10
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ includeConfig 'conf/base.config'

// Container slug. Stable releases should specify release tag!
// Developmental code should specify :dev
process.container = 'nfcore/ampliseq:1.2.0'
process.container = 'nfcore/ampliseq:dev'


// Load nf-core custom profiles from different Institutions
Expand Down Expand Up @@ -161,7 +161,7 @@ manifest {
description = '16S rRNA amplicon sequencing analysis workflow using QIIME2'
mainScript = 'main.nf'
nextflowVersion = '>=20.04.0'
version = '1.2.0'
version = '1.3.0dev'
}

// Function to ensure that resource requirements don't go beyond
Expand Down

0 comments on commit 5152da0

Please sign in to comment.