Skip to content
This repository was archived by the owner on Mar 22, 2026. It is now read-only.

Commit 3ed44f9

Browse files
author
Tim Lauridsen
committed
bumped version to 0.1.3
1 parent 61773df commit 3ed44f9

6 files changed

Lines changed: 13 additions & 8 deletions

File tree

client/dnfdaemon/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# along with this program; if not, write to the Free Software
1414
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1515

16-
# (C) 2013 - Tim Lauridsen <timlau@fedoraproject.org>
16+
# (C) 2013 - 2014 - Tim Lauridsen <timlau@fedoraproject.org>
1717

1818
"""
1919
This is a Python 2.x & 3.x client API for the dnf-daemon Dbus Service
@@ -98,6 +98,8 @@ def on_RepoMetaDataProgress(self, name, frac):
9898
import weakref
9999
import logging
100100

101+
__VERSION__ = "0.1.3"
102+
101103
logger = logging.getLogger("dnfdaemon.client")
102104

103105
from gi.repository import Gio, GObject

dnfdaemon.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global dnf_org org.baseurl.Dnf
22

33
Name: dnfdaemon
4-
Version: 0.1.2
4+
Version: 0.1.3
55
Release: 1%{?dist}
66
Summary: DBus daemon for dnf package actions
77
License: GPLv2+
@@ -76,6 +76,9 @@ fi
7676

7777

7878
%changelog
79+
* Sat Mar 29 2014 Tim Lauridsen <timlau@fedoraproject.org> 0.1.3-1
80+
- bumped release to 0.1.3
81+
7982
* Mon Mar 24 2014 Tim Lauridsen <timlau@fedoraproject.org> 0.1.2-1
8083
- bumped release to 0.1.2
8184
- updated requirement to dnf-0.4.19

dnfdaemon/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# along with this program; if not, write to the Free Software
1414
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1515

16-
# (C) 2013 - Tim Lauridsen <timlau@fedoraproject.org>
16+
# (C) 2013 - 2014 - Tim Lauridsen <timlau@fedoraproject.org>
1717

1818
"""
1919
Common stuff for the dnfdaemon dbus services

dnfdaemon/dnfdaemon-session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# along with this program; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1616

17-
# (C) 2013 - Tim Lauridsen <timlau@fedoraproject.org>
17+
# (C) 2013 - 2014 - Tim Lauridsen <timlau@fedoraproject.org>
1818

1919
#
2020
# dnf session bus dBus service (Readonly)
@@ -35,7 +35,7 @@
3535

3636
from common import DnfDaemonBase, doTextLoggerSetup, Logger, NONE
3737

38-
version = 102 # (00.01.02) must be integer
38+
version = 103 # (00.01.03) must be integer
3939
DAEMON_ORG = 'org.baseurl.DnfSession'
4040
DAEMON_INTERFACE = DAEMON_ORG
4141

dnfdaemon/dnfdaemon-system.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# along with this program; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1616

17-
# (C) 2013 - Tim Lauridsen <timlau@fedoraproject.org>
17+
# (C) 2013 -2014 - Tim Lauridsen <timlau@fedoraproject.org>
1818

1919
#
2020
# dnf session bus dBus service (Readonly)
@@ -41,7 +41,7 @@
4141

4242
from common import DnfDaemonBase, doTextLoggerSetup, Logger, NONE
4343

44-
version = 102 # (00.01.02) must be integer
44+
version = 103 # (00.01.02) must be integer
4545
DAEMON_ORG = 'org.baseurl.DnfSystem'
4646
DAEMON_INTERFACE = DAEMON_ORG
4747

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# The short X.Y version.
5555
version = '0.1'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.1.0'
57+
release = '0.1.3'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

0 commit comments

Comments
 (0)