Skip to content

Commit

Permalink
Bump 1.1.0 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
apeltzer committed Dec 13, 2019
1 parent aa27bab commit c6d5c3a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
export NXF_VER=${{ matrix.nxf_ver }}
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- name: Download and tag image
run: |
docker pull nfcore/bacass:dev
docker tag nfcore/bacass:dev nfcore/bacass:1.1.0
- name: Run tests
run: |
nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.options }}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ before_install:
- docker pull nfcore/bacass:dev
# Fake the tag locally so that the pipeline runs properly
# Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
- docker tag nfcore/bacass:dev nfcore/bacass:dev
- docker tag nfcore/bacass:dev nfcore/bacass:1.1.0

install:
# Install Nextflow
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
# for bandage :/ otherwise it complains about missing libGL.so.1
RUN apt-get install -y libgl1-mesa-glx && apt-get clean -y
ENV PATH /opt/conda/envs/nf-core-bacass-1.1.0dev/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-bacass-1.1.0/bin:$PATH
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-bacass-1.1.0dev
name: nf-core-bacass-1.1.0
channels:
- conda-forge
- bioconda
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ params {

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

// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
Expand Down Expand Up @@ -111,7 +111,7 @@ manifest {
description = 'Simple bacterial assembly and annotation pipeline.'
mainScript = 'main.nf'
nextflowVersion = '>=19.10.0'
version = '1.1.0dev'
version = '1.1.0'
}

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

0 comments on commit c6d5c3a

Please sign in to comment.