Skip to content

Commit

Permalink
bump version to v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bb-Ricardo authored and kuznetsov andrei committed Oct 9, 2024
1 parent 777b80b commit 08a2f9b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ usage: netbox-sync.py [-h] [-c settings.ini [settings.ini ...]] [-g]
Sync objects from various sources to NetBox
Version: 1.5.1 (2023-09-25)
Version: 1.6.0 (2024-02-16)
Project URL: https://github.com/bb-ricardo/netbox-sync
options:
Expand Down
4 changes: 2 additions & 2 deletions module/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# For a copy, see file LICENSE.txt included in this
# repository or visit: <https://opensource.org/licenses/MIT>.

__version__ = "1.5.1"
__version_date__ = "2023-09-25"
__version__ = "1.6.0"
__version_date__ = "2024-02-16"
__author__ = "Ricardo Bartels <ricardo.bartels@telekom.de>"
__description__ = "NetBox Sync"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion module/netbox/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ def delete_unused_tags(self):
if tag_tagged_items is None or tag_tagged_items != 0:
continue

log.info(f"Deleting unused tag {this_tag.get_display_name()}")
log.info(f"Deleting unused tag '{this_tag.get_display_name()}'")
self.request(NBTag, req_type="DELETE", nb_id=this_tag.nb_id)

# EOF
2 changes: 1 addition & 1 deletion settings-example.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;;; Welcome to the NetBox Sync configuration file.
;;; Version: 1.5.1 (2023-09-25)
;;; Version: 1.6.0 (2024-02-16)
;;; Project URL: https://github.com/bb-ricardo/netbox-sync

; The values in this file override the default values used by the system if a config
Expand Down

0 comments on commit 08a2f9b

Please sign in to comment.