Skip to content

Commit 9acb5c9

Browse files
committed
Version 2.2, and it's 2021 now
1 parent 46c1272 commit 9acb5c9

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python-networkmanager - Easy communication with NetworkManager
2-
Copyright (C) 2011-2017 Dennis Kaarsemaker <[email protected]>
2+
Copyright (C) 2011-2021 Dennis Kaarsemaker <[email protected]>
33

44
This software is provided 'as-is', without any express or implied
55
warranty. In no event will the authors be held liable for any damages

NetworkManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NetworkManager - a library to make interacting with the NetworkManager daemon
22
# easier.
33
#
4-
# (C)2011-2017 Dennis Kaarsemaker
4+
# (C)2011-2021 Dennis Kaarsemaker
55
# License: zlib
66

77
import copy

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@
4242

4343
# General information about the project.
4444
project = u'python-networkmanager'
45-
copyright = u'2011-2018, Dennis Kaarsemaker'
45+
copyright = u'2011-2021, Dennis Kaarsemaker'
4646

4747
# The version info for the project you're documenting, acts as replacement for
4848
# |version| and |release|, also used in various other places throughout the
4949
# built documents.
5050
#
5151
# The short X.Y version.
52-
version = '2.1'
52+
version = '2.2'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '2.1'
54+
release = '2.2'
5555

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

examples/n-m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Command-line tool to interact with NetworkManager. With this tool, you can
44
# inspect various configuration items and (de-)activate connections.
55
#
6-
# (C) 2011-2016 Dennis Kaarsemaker
6+
# (C) 2011-2021 Dennis Kaarsemaker
77
# License: zlib
88

99
from __future__ import print_function

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
#!/usr/bin/python
22

3-
try:
4-
from setuptools import setup
5-
except ImportError:
6-
from distutils.core import setup
3+
from setuptools import setup
74

85
setup(name = "python-networkmanager",
9-
version = "2.1",
6+
version = "2.2",
107
author = "Dennis Kaarsemaker",
118
author_email = "[email protected]",
129
url = "http://github.com/seveas/python-networkmanager",

0 commit comments

Comments
 (0)