Skip to content

Commit f690bc9

Browse files
committed
Bumped version number
1 parent 2d1d7bb commit f690bc9

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Dockerfile

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Docker for CONCOCT (https://github.com/BinPro/CONCOCT) v1.0.0
2-
# VERSION 1.0.0
1+
# Docker for CONCOCT (https://github.com/BinPro/CONCOCT) v1.1.0
2+
# VERSION 1.1.0
33
#
44
# This docker creates and sets up an Ubuntu environment with all
5-
# dependencies for CONCOCT v1.0.0 installed.
5+
# dependencies for CONCOCT v1.1.0 installed.
66
#
77
# To login to the docker with a shared directory from the host do:
88
#
9-
# docker run -v /my/host/shared/directory:/my/docker/location -i -t alneberg/concoct_1.0.0 /bin/bash
9+
# docker run -v /my/host/shared/directory:/my/docker/location -i -t alneberg/concoct_1.1.0 /bin/bash
1010
#
1111

1212
FROM ubuntu:18.04
@@ -18,11 +18,11 @@ RUN apt-get install -qq wget build-essential libgsl0-dev git zip unzip bedtools
1818

1919
RUN pip install --upgrade pip
2020

21-
RUN wget --no-check-certificate https://github.com/BinPro/integration_test_data/archive/v1.0.tar.gz
21+
RUN wget --no-check-certificate https://github.com/BinPro/integration_test_data/archive/v1.1.tar.gz
2222
RUN mkdir /opt/CONCOCT/tests/test_data/integration_test_data
23-
RUN tar -xvzf v1.0.tar.gz -C /opt/CONCOCT/tests/test_data/integration_test_data --strip-components=1
23+
RUN tar -xvzf v1.1.tar.gz -C /opt/CONCOCT/tests/test_data/integration_test_data --strip-components=1
2424

25-
# Install python dependencies and fetch and install CONCOCT 1.0.0
25+
# Install python dependencies and fetch and install CONCOCT 1.1.0
2626
RUN cd /opt/CONCOCT;\
2727
pip install -r requirements.txt;\
2828

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## CONCOCT 1.0.0 [![Build Status](https://travis-ci.org/BinPro/CONCOCT.png?branch=master)](https://travis-ci.org/BinPro/CONCOCT)
1+
## CONCOCT 1.1.0 [![Build Status](https://travis-ci.org/BinPro/CONCOCT.png?branch=master)](https://travis-ci.org/BinPro/CONCOCT)
22

33
A program for unsupervised binning of metagenomic contigs by using nucleotide composition,
44
coverage data in multiple samples and linkage data from paired end reads.

doc/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
# built documents.
7373
#
7474
# The short X.Y version.
75-
version = '1.0'
75+
version = '1.1'
7676
# The full version, including alpha/beta/rc tags.
77-
release = '1.0.0'
77+
release = '1.1.0'
7878

7979
# The language for content autogenerated by Sphinx. Refer to documentation
8080
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
print("You need to have Cython installed on your system to run setup.py. Sorry!")
1212
sys.exit()
1313

14-
version = '1.0.0'
14+
version = '1.1.0'
1515

1616
include_dirs_for_concoct = [np.get_include(), '/opt/local/include/']
1717

0 commit comments

Comments
 (0)