Skip to content

Commit

Permalink
Create release 0.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jul 20, 2023
1 parent f65a61c commit 360fdd6
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 1 deletion.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ History

.. to_doc
---------------------
0.15.3 (2023-07-20)
---------------------
* Fix Pulsar consumer state after ``ConnectionResetError``. `Pull Request 331`_
* User auth plugins (thanks to `@SergeyYakubov`_). `Pull Request 321`_

---------------------
0.15.2 (2023-05-02)
---------------------
Expand Down Expand Up @@ -467,6 +473,8 @@ History

.. github_links
.. _Pull Request 331: https://github.com/galaxyproject/pulsar/pull/331
.. _Pull Request 321: https://github.com/galaxyproject/pulsar/pull/321
.. _Pull Request 325: https://github.com/galaxyproject/pulsar/pull/325
.. _Pull Request 324: https://github.com/galaxyproject/pulsar/pull/324
.. _Pull Request 322: https://github.com/galaxyproject/pulsar/pull/322
Expand Down Expand Up @@ -612,3 +620,4 @@ History
.. _@tirkarthi: https://github.com/tirkarthi
.. _@natefoo: https://github.com/natefoo
.. _@nsoranzo: https://github.com/nsoranzo
.. _@SergeyYakubov: https://github.com/SergeyYakubov
1 change: 1 addition & 0 deletions docs/pulsar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Subpackages
pulsar.messaging
pulsar.scripts
pulsar.tools
pulsar.user_auth
pulsar.util
pulsar.web

Expand Down
46 changes: 46 additions & 0 deletions docs/pulsar.user_auth.methods.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
pulsar.user\_auth.methods package
=================================

Submodules
----------

pulsar.user\_auth.methods.allow\_all module
-------------------------------------------

.. automodule:: pulsar.user_auth.methods.allow_all
:members:
:undoc-members:
:show-inheritance:

pulsar.user\_auth.methods.interface module
------------------------------------------

.. automodule:: pulsar.user_auth.methods.interface
:members:
:undoc-members:
:show-inheritance:

pulsar.user\_auth.methods.oidc module
-------------------------------------

.. automodule:: pulsar.user_auth.methods.oidc
:members:
:undoc-members:
:show-inheritance:

pulsar.user\_auth.methods.userlist module
-----------------------------------------

.. automodule:: pulsar.user_auth.methods.userlist
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: pulsar.user_auth.methods
:members:
:undoc-members:
:show-inheritance:
29 changes: 29 additions & 0 deletions docs/pulsar.user_auth.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
pulsar.user\_auth package
=========================

Subpackages
-----------

.. toctree::

pulsar.user_auth.methods

Submodules
----------

pulsar.user\_auth.manager module
--------------------------------

.. automodule:: pulsar.user_auth.manager
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: pulsar.user_auth
:members:
:undoc-members:
:show-inheritance:
2 changes: 1 addition & 1 deletion pulsar/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.15.2'
__version__ = '0.15.3'

PROJECT_NAME = "pulsar"
PROJECT_OWNER = PROJECT_USERAME = "galaxyproject"
Expand Down

0 comments on commit 360fdd6

Please sign in to comment.