From ed496ef996e8479882ff0486f6f4a50e3ce29448 Mon Sep 17 00:00:00 2001 From: Leonardo Castorina Date: Thu, 22 Feb 2024 14:39:22 +0000 Subject: [PATCH 1/5] Update pyproject.toml with version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8d596bc..1933c71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "AMPAL" -version = "1.5.1" +version = "1.5.2" requires-python = ">= 3.8" readme = "README.md" dependencies = [ From e1e7284696819594dd5ccb9cbb77ae6688581c73 Mon Sep 17 00:00:00 2001 From: Leonardo Castorina Date: Fri, 23 Feb 2024 11:36:14 +0000 Subject: [PATCH 2/5] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1933c71..f8b46ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "AMPAL" -version = "1.5.2" +version = "1.5.3" requires-python = ">= 3.8" readme = "README.md" dependencies = [ From 867e21ef43663a9e4edf037f16caa0c118f1256d Mon Sep 17 00:00:00 2001 From: Leonardo Castorina Date: Fri, 23 Feb 2024 11:36:31 +0000 Subject: [PATCH 3/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9cf7f91..d0f84a3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def readme(): setup( name="AMPAL", - version="1.5.2", + version="1.5.3", description="A simple framework for representing biomolecular structure.", long_description=readme(), long_description_content_type="text/markdown; charset=UTF-8; variant=GFM", From ba08aaa5c7d89245f61d8608caa8291a7e0af769 Mon Sep 17 00:00:00 2001 From: Leonardo Castorina Date: Fri, 23 Feb 2024 11:36:43 +0000 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36fb899..7962464 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ complex selections and performing analysis. Take a look at the ## Release Notes -## v1.5.2 +## v1.5.3 * Fixes bug with `get_slice_from_res_id` to enable non-continuous sequences to be selected. From 3c1befd7189ec952dcc80a0b817a3e1b0e05b683 Mon Sep 17 00:00:00 2001 From: Leonardo Castorina Date: Fri, 23 Feb 2024 11:38:15 +0000 Subject: [PATCH 5/5] Update __init__.py --- src/ampal/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ampal/__init__.py b/src/ampal/__init__.py index 4931457..9b9665c 100644 --- a/src/ampal/__init__.py +++ b/src/ampal/__init__.py @@ -9,4 +9,4 @@ from .dssp import tag_dssp_data -__version__ = "1.5.2" +__version__ = "1.5.3"