From 69112e873763dddc18edb015d5a536f40c36c57c Mon Sep 17 00:00:00 2001 From: Sam Ireland Date: Thu, 4 Feb 2021 01:45:14 +0000 Subject: [PATCH] 1.0.9 --- README.rst | 22 ++++++++++++++-------- atomium/__init__.py | 2 +- docs/source/changelog.rst | 9 +++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- 5 files changed, 27 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index 2f3b379..4b646a9 100644 --- a/README.rst +++ b/README.rst @@ -1,12 +1,12 @@ atomium ======= -|travis| |coveralls| |pypi| |version| |commit| |downloads| +|travis| |coveralls| |pypi| |version| |commit| -.. |travis| image:: https://api.travis-ci.org/samirelanduk/atomium.svg?branch=1.0.8 +.. |travis| image:: https://api.travis-ci.org/samirelanduk/atomium.svg?branch=master :target: https://travis-ci.org/samirelanduk/atomium/ -.. |coveralls| image:: https://coveralls.io/repos/github/samirelanduk/atomium/badge.svg?branch=1.0.8 +.. |coveralls| image:: https://coveralls.io/repos/github/samirelanduk/atomium/badge.svg?branch=master :target: https://coveralls.io/github/samirelanduk/atomium/ .. |pypi| image:: https://img.shields.io/pypi/pyversions/atomium.svg @@ -15,11 +15,8 @@ atomium .. |version| image:: https://img.shields.io/pypi/v/atomium.svg :target: https://pypi.org/project/atomium/ -.. |commit| image:: https://img.shields.io/github/last-commit/samirelanduk/atomium/1.0.8.svg - :target: https://github.com/samirelanduk/atomium/tree/1.0.8/ - -.. |downloads| image:: https://img.shields.io/pypi/dm/atomium.svg - :target: https://pypi.org/project/atomium/ +.. |commit| image:: https://img.shields.io/github/last-commit/samirelanduk/atomium/master.svg + :target: https://github.com/samirelanduk/atomium/tree/master/ atomium is a molecular modeller and file parser, capable of reading from and @@ -388,6 +385,15 @@ results. Changelog --------- +Release 1.0.9 +~~~~~~~~~~~~~ + +`4 February 2021` + +* Fixed temperature factor zero-padding in PDB saving. +* Fixed MMTF decode big in Ubuntu. + + Release 1.0.8 ~~~~~~~~~~~~~ diff --git a/atomium/__init__.py b/atomium/__init__.py index 89134c9..14518ae 100644 --- a/atomium/__init__.py +++ b/atomium/__init__.py @@ -2,4 +2,4 @@ from .structures import Atom, Residue, Ligand, Chain, Model __author__ = "Sam Ireland" -__version__ = "1.0.8" +__version__ = "1.0.9" diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 7947199..84ae231 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,15 @@ Changelog --------- +Release 1.0.9 +~~~~~~~~~~~~~ + +`4 February 2021` + +* Fixed temperature factor zero-padding in PDB saving. +* Fixed MMTF decode big in Ubuntu. + + Release 1.0.8 ~~~~~~~~~~~~~ diff --git a/docs/source/conf.py b/docs/source/conf.py index 39a9a89..9cc4c46 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,14 +20,14 @@ # -- Project information ----------------------------------------------------- project = 'atomium' -copyright = '2020, Sam Ireland' +copyright = '2021, Sam Ireland' author = 'Sam Ireland' analytics = "UA-51790964-14" # The short X.Y version version = '1.0' # The full version, including alpha/beta/rc tags -release = '1.0.8' +release = '1.0.9' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index dac969a..fe2030c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="atomium", - version="1.0.8", + version="1.0.9", description="A molecular modeller and file parser.", long_description=long_description, long_description_content_type="text/x-rst",