Skip to content

Commit 7932225

Browse files
committed
Version 1.0.2
Includes the fix for the `urgency` parameter of the `create_hints`. Also update README.md with new links and add CHANGELOG.md file.
1 parent 96b2def commit 7932225

File tree

3 files changed

+38
-9
lines changed

3 files changed

+38
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!--
2+
SPDX-License-Identifier: LGPL-2.1-or-later
3+
SPDX-FileCopyrightText: 2024 igo95862
4+
-->
5+
6+
## 1.0.2
7+
8+
* Fix *create_hints* `urgency` parameter not working. (found and fixed by @dhjw)
9+
10+
## 1.0.1
11+
12+
* Increase minimum sdbus version to 0.8rc2
13+
14+
## 1.0.0
15+
16+
Initial release.

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1+
<!--
2+
SPDX-License-Identifier: LGPL-2.1-or-later
3+
SPDX-FileCopyrightText: 2024 igo95862
4+
-->
5+
16
[![Documentation Status](https://readthedocs.org/projects/python-sdbus-notifications/badge/?version=latest)](https://python-sdbus-notifications.readthedocs.io/en/latest/?badge=latest)
7+
[![PyPI - Version](https://img.shields.io/pypi/v/sdbus-notifications)](https://pypi.org/project/sdbus-notifications/)
8+
29
# Freedesktop notifications binds for python-sdbus
310

4-
Supports both asyncio (under `sdbus_async.notifications` module) and blocking (under `sdbus_block.notifications` module)
11+
Supports both asyncio (under `sdbus_async.notifications` module) and blocking (under `sdbus_block.notifications` module)
512

613
Implemented:
714

@@ -12,14 +19,14 @@ Implemented:
1219

1320
* `python-sdbus` version higher than 0.8rc2
1421

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

1724
## Installation
1825

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

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

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

2532
See the [python-sdbus documentation](https://python-sdbus.readthedocs.io/en/latest/).

setup.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,25 @@
2929
description=('Freedesktop notifications binds for sdbus.'),
3030
long_description=long_description,
3131
long_description_content_type='text/markdown',
32-
version='1.0.1',
33-
url='https://github.com/igo95862/python-sdbus',
32+
version='1.0.2',
33+
url='https://github.com/python-sdbus/python-sdbus-notifications',
3434
author='igo95862',
3535
author_email='igo95862@yandex.ru',
3636
license='LGPL-2.1-or-later',
3737
keywords='dbus notifications linux freedesktop',
3838
project_urls={
39-
'Documentation': 'https://python-sdbus.readthedocs.io/en/latest/',
40-
'Source': 'https://github.com/igo95862/python-sdbus/',
41-
'Tracker': 'https://github.com/igo95862/python-sdbus/issues/',
39+
'Documentation': (
40+
'https://python-sdbus-notifications.readthedocs.io/en/latest/'
41+
),
42+
'Source': (
43+
'https://github.com/python-sdbus/python-sdbus-notifications'
44+
),
45+
'Tracker': (
46+
'https://github.com/python-sdbus/python-sdbus-notifications/issues'
47+
),
4248
},
4349
classifiers=[
44-
'Development Status :: 4 - Beta',
50+
'Development Status :: 5 - Production/Stable',
4551
'Intended Audience :: Developers',
4652
(
4753
'License :: OSI Approved :: '

0 commit comments

Comments
 (0)