diff --git a/HISTORY.rst b/HISTORY.rst index 635c3fa..39a6759 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,8 @@ History ======= +0.4.11 (2022-11-25) +------------------ 0.4.10 (2022-11-22) ------------------ 0.4.8 (2022-06-15) diff --git a/docs/conf.py b/docs/conf.py index 0b6f446..b85f87e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ import os if not os.path.isdir("./_static"): - url = "https://www.dropbox.com/s/akhl2mr9kn0e0lh/download.zip?dl=1" + url = "https://www.dropbox.com/s/yir8x5reso209d2/download.zip?dl=1" os.system("wget " + url) os.system("mv download.zip?dl=1 download.zip") os.system("unzip download.zip") diff --git a/docs/index.rst b/docs/index.rst index 827ec03..c8e2630 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -40,6 +40,8 @@ In the new release, we provide the interactive plots: Latest additions ---------------- +.. include:: release_notes/0.4.11.rst + .. include:: release_notes/0.4.6.rst .. include:: release_notes/0.3.2.rst diff --git a/setup.cfg b/setup.cfg index 62d2521..f877626 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.10 +current_version = 0.4.11 commit = True tag = True diff --git a/setup.py b/setup.py index e817b2d..e728fba 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/BiomedicalMachineLearning/stLearn", - version="0.4.10", + version="0.4.11", zip_safe=False, ) diff --git a/stlearn/__init__.py b/stlearn/__init__.py index 643583d..1fc79b2 100644 --- a/stlearn/__init__.py +++ b/stlearn/__init__.py @@ -2,7 +2,7 @@ __author__ = """Genomics and Machine Learning lab""" __email__ = "duy.pham@uq.edu.au" -__version__ = "0.4.10" +__version__ = "0.4.11" from . import add