Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
Includes the fix for the `urgency` parameter of the `create_hints`.

Also update README.md with new links and add CHANGELOG.md file.
  • Loading branch information
igo95862 committed May 19, 2024
1 parent 96b2def commit 7932225
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 9 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!--
SPDX-License-Identifier: LGPL-2.1-or-later
SPDX-FileCopyrightText: 2024 igo95862
-->

## 1.0.2

* Fix *create_hints* `urgency` parameter not working. (found and fixed by @dhjw)

## 1.0.1

* Increase minimum sdbus version to 0.8rc2

## 1.0.0

Initial release.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<!--
SPDX-License-Identifier: LGPL-2.1-or-later
SPDX-FileCopyrightText: 2024 igo95862
-->

[![Documentation Status](https://readthedocs.org/projects/python-sdbus-notifications/badge/?version=latest)](https://python-sdbus-notifications.readthedocs.io/en/latest/?badge=latest)
[![PyPI - Version](https://img.shields.io/pypi/v/sdbus-notifications)](https://pypi.org/project/sdbus-notifications/)

# Freedesktop notifications binds for python-sdbus

Supports both asyncio (under `sdbus_async.notifications` module) and blocking (under `sdbus_block.notifications` module)
Supports both asyncio (under `sdbus_async.notifications` module) and blocking (under `sdbus_block.notifications` module)

Implemented:

Expand All @@ -12,14 +19,14 @@ Implemented:

* `python-sdbus` version higher than 0.8rc2

See [python-sdbus requirements](https://github.com/igo95862/python-sdbus#requirements).
See [python-sdbus requirements](https://github.com/python-sdbus/python-sdbus#requirements).

## Installation

`pip install --only-binary ':all:' sdbus-notifications`

# [Documentation](https://python-sdbus-notifications.readthedocs.io/en/latest/)

This is the sub-project of [python-sdbus](https://github.com/igo95862/python-sdbus).
This is the sub-project of [python-sdbus](https://github.com/python-sdbus/python-sdbus).

See the [python-sdbus documentation](https://python-sdbus.readthedocs.io/en/latest/).
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,25 @@
description=('Freedesktop notifications binds for sdbus.'),
long_description=long_description,
long_description_content_type='text/markdown',
version='1.0.1',
url='https://github.com/igo95862/python-sdbus',
version='1.0.2',
url='https://github.com/python-sdbus/python-sdbus-notifications',
author='igo95862',
author_email='igo95862@yandex.ru',
license='LGPL-2.1-or-later',
keywords='dbus notifications linux freedesktop',
project_urls={
'Documentation': 'https://python-sdbus.readthedocs.io/en/latest/',
'Source': 'https://github.com/igo95862/python-sdbus/',
'Tracker': 'https://github.com/igo95862/python-sdbus/issues/',
'Documentation': (
'https://python-sdbus-notifications.readthedocs.io/en/latest/'
),
'Source': (
'https://github.com/python-sdbus/python-sdbus-notifications'
),
'Tracker': (
'https://github.com/python-sdbus/python-sdbus-notifications/issues'
),
},
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
(
'License :: OSI Approved :: '
Expand Down

0 comments on commit 7932225

Please sign in to comment.