diff --git a/docs/source/events.rst b/docs/source/events.rst index 91bcb0c737..28067f3b7a 100644 --- a/docs/source/events.rst +++ b/docs/source/events.rst @@ -26,6 +26,7 @@ Events platypush/events/google.rst platypush/events/google.fit.rst platypush/events/google.pubsub.rst + platypush/events/gotify.rst platypush/events/gps.rst platypush/events/http.rst platypush/events/http.hook.rst diff --git a/docs/source/platypush/events/gotify.rst b/docs/source/platypush/events/gotify.rst new file mode 100644 index 0000000000..82b661bd41 --- /dev/null +++ b/docs/source/platypush/events/gotify.rst @@ -0,0 +1,5 @@ +``platypush.message.event.gotify`` +================================== + +.. automodule:: platypush.message.event.gotify + :members: diff --git a/docs/source/platypush/plugins/gotify.rst b/docs/source/platypush/plugins/gotify.rst new file mode 100644 index 0000000000..875e89b7c8 --- /dev/null +++ b/docs/source/platypush/plugins/gotify.rst @@ -0,0 +1,5 @@ +``gotify`` +========== + +.. automodule:: platypush.plugins.gotify + :members: diff --git a/docs/source/plugins.rst b/docs/source/plugins.rst index 8530d0d80f..45f77764eb 100644 --- a/docs/source/plugins.rst +++ b/docs/source/plugins.rst @@ -43,6 +43,7 @@ Plugins platypush/plugins/google.pubsub.rst platypush/plugins/google.translate.rst platypush/plugins/google.youtube.rst + platypush/plugins/gotify.rst platypush/plugins/gpio.rst platypush/plugins/gpio.sensor.accelerometer.rst platypush/plugins/gpio.sensor.bme280.rst diff --git a/platypush/__init__.py b/platypush/__init__.py index 1efbc79146..971103c177 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -23,7 +23,7 @@ from .message.response import Response from .utils import set_thread_name, get_enabled_plugins __author__ = 'Fabio Manganiello ' -__version__ = '0.22.2' +__version__ = '0.22.3' logger = logging.getLogger('platypush') diff --git a/setup.cfg b/setup.cfg index f87f44f167..c735f390a8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.22.2 +current_version = 0.22.3 commit = True tag = True diff --git a/setup.py b/setup.py index 7e7fadce2a..48bfe7336d 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ backend = pkg_files('platypush/backend') setup( name="platypush", - version="0.22.2", + version="0.22.3", author="Fabio Manganiello", author_email="info@fabiomanganiello.com", description="Platypush service",