diff --git a/docs/conf.py b/docs/conf.py index 305cccc22..a558bde32 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -69,7 +69,7 @@ # The short X.Y version. version = '1.4' # The full version, including alpha/beta/rc tags. -release = '1.4.2' +release = '1.4.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index da1143f39..455da48bb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -49,8 +49,14 @@ New in release |release| This is a hotfix release. It fixes the following issues: -- This releases fixes a concurrency issue with pVACapi/pVACviz that would occurr when - users would try to visualize multiple files at the same time +- IEDB will output a warning if an epitope contains only amino acid symbols + that could also be nucleotides. This would cause an error during parsing of + the IEDB output files. This version updates the parser to ignore these + warnings. +- We added some improvements to pVACapi regarding database file read + speeds and transaction handling. This version also starts enforcing a file + size limit (14MB) for result files. Larger files will no longer be + visualizable in pVACviz since they take too long to load. New in version |version| ------------------------ diff --git a/docs/releases/1_4.rst b/docs/releases/1_4.rst index 23b11d15a..c6105319b 100644 --- a/docs/releases/1_4.rst +++ b/docs/releases/1_4.rst @@ -48,3 +48,17 @@ This is a hotfix release. It fixes the following issues: - This releases fixes a concurrency issue with pVACapi/pVACviz that would occurr when users would try to visualize multiple files at the same time. + +1.4.3 +----- + +This is a hotfix release. It fixes the following issues: + +- IEDB will output a warning if an epitope contains only amino acid symbols + that could also be nucleotides. This would cause an error during parsing of + the IEDB output files. This version updates the parser to ignore these + warnings. +- We added some improvements to pVACapi regarding database file read + speeds and transaction handling. This version also starts enforcing a file + size limit (14MB) for result files. Larger files will no longer be + visualizable in pVACviz since they take too long to load. diff --git a/setup.py b/setup.py index 6150c2462..2e0da9a1f 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ setup( name="pvactools", - version="1.4.2", + version="1.4.3", packages=[ "tools", "tools.pvacfuse",