Skip to content

Commit e972c94

Browse files
committed
bumps version to 1.8.1
1 parent 49e0688 commit e972c94

36 files changed

Lines changed: 48 additions & 46 deletions

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,18 +99,18 @@ usage: netbox-sync.py [-h] [-c settings.ini [settings.ini ...]] [-g]
9999
100100
Sync objects from various sources to NetBox
101101
102-
Version: 1.8.0 (2025-03-07)
102+
Version: 1.8.1 (2026-03-18)
103103
Project URL: https://github.com/bb-ricardo/netbox-sync
104104
105105
options:
106106
-h, --help show this help message and exit
107-
-c settings.ini [settings.ini ...], --config settings.ini [settings.ini ...]
107+
-c, --config settings.ini [settings.ini ...]
108108
points to the config file to read config data from
109109
which is not installed under the default path
110110
'./settings.ini'
111111
-g, --generate_config
112112
generates default config file.
113-
-l {DEBUG3,DEBUG2,DEBUG,INFO,WARNING,ERROR}, --log_level {DEBUG3,DEBUG2,DEBUG,INFO,WARNING,ERROR}
113+
-l, --log_level {DEBUG3,DEBUG2,DEBUG,INFO,WARNING,ERROR}
114114
set log level (overrides config)
115115
-n, --dry_run Operate as usual but don't change anything in NetBox.
116116
Great if you want to test and see what would be

module/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see file LICENSE.txt included in this
88
# repository or visit: <https://opensource.org/licenses/MIT>.
99

10-
__version__ = "1.8.0"
11-
__version_date__ = "2025-03-07"
10+
__version__ = "1.8.1"
11+
__version_date__ = "2026-03-18"
1212
__author__ = "Ricardo Bartels <ricardo.bartels@telekom.de>"
1313
__description__ = "NetBox Sync"
1414
__license__ = "MIT"

module/common/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/common/cli_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/common/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/common/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/common/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/common/support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

module/config/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2020 - 2025 Ricardo Bartels. All rights reserved.
2+
# Copyright (c) 2020 - 2026 Ricardo Bartels. All rights reserved.
33
#
44
# netbox-sync.py
55
#

0 commit comments

Comments
 (0)