From ec7aeb8c7937e0a7a6c675206cd8369cf5fefe8f Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Wed, 31 Jan 2024 18:45:58 +0100 Subject: [PATCH] Create release 0.10.9 --- HISTORY.rst | 15 +++++++++++++++ docs/ephemeris.rst | 8 ++++++++ src/ephemeris/__init__.py | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 3b1e434..6e9386d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,17 @@ History .. to_doc +--------------------- +0.10.9 (2024-01-31) +--------------------- + +* Fix CI tests (thanks to `@mvdbeek`_). `Pull Request 208`_ +* Add black, ruff, isort and mypy (thanks to `@mvdbeek`_). `Pull Request 209`_ +* Add now mandatory readthedocs config file (thanks to `@nsoranzo`_). `Pull + Request 210`_ +* Enhancements to the IDC scripts (thanks to `@jmchilton`_). `Pull Request + 201`_ + --------------------- 0.10.8 (2023-04-18) --------------------- @@ -256,6 +267,10 @@ History and adapt them for usage as a library. .. github_links +.. _Pull Request 208: https://github.com/galaxyproject/ephemeris/pull/208 +.. _Pull Request 209: https://github.com/galaxyproject/ephemeris/pull/209 +.. _Pull Request 210: https://github.com/galaxyproject/ephemeris/pull/210 +.. _Pull Request 201: https://github.com/galaxyproject/ephemeris/pull/201 .. _Pull Request 191: https://github.com/galaxyproject/ephemeris/pull/191 .. _Pull Request 196: https://github.com/galaxyproject/ephemeris/pull/196 .. _Pull Request 195: https://github.com/galaxyproject/ephemeris/pull/195 diff --git a/docs/ephemeris.rst b/docs/ephemeris.rst index c0f3743..0ee6606 100644 --- a/docs/ephemeris.rst +++ b/docs/ephemeris.rst @@ -52,6 +52,14 @@ ephemeris.run\_data\_managers module :undoc-members: :show-inheritance: +ephemeris.set\_library\_permissions module +------------------------------------------ + +.. automodule:: ephemeris.set_library_permissions + :members: + :undoc-members: + :show-inheritance: + ephemeris.setup\_data\_libraries module --------------------------------------- diff --git a/src/ephemeris/__init__.py b/src/ephemeris/__init__.py index 60d0847..f567d9a 100644 --- a/src/ephemeris/__init__.py +++ b/src/ephemeris/__init__.py @@ -3,7 +3,7 @@ import yaml from bioblend import galaxy -__version__ = "0.10.8" +__version__ = "0.10.9" PROJECT_NAME = "ephemeris" PROJECT_OWNER = PROJECT_USERAME = "galaxyproject"