diff --git a/CHANGELOG.md b/CHANGELOG.md index 95fcc32..97d1d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # CHANGELOG +v1.1.2 (October 2018) +- Bugfix for sample names interpreted as integers +- Bugfix for user-defined lineages +- Small fixes in docs and README + v1.1.1 (June 2018) - Further bugfixes for the annotation of kmers - Platform specific pandas bugfix with LMM diff --git a/docs/conf.py b/docs/conf.py index 74c74fa..e6debbd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = '1.1.1' +version = '1.1.2' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyseer/__init__.py b/pyseer/__init__.py index 56e4c81..7162b49 100644 --- a/pyseer/__init__.py +++ b/pyseer/__init__.py @@ -2,4 +2,4 @@ '''Python reimplementation of SEER for bacterial GWAS''' -__version__ = '1.1.1' +__version__ = '1.1.2'