Skip to content

Commit

Permalink
Merge pull request #195 from SchrodingersGat/version-bump
Browse files Browse the repository at this point in the history
Bump version number
  • Loading branch information
SchrodingersGat committed Nov 15, 2023
2 parents a2767b1 + aebf4ac commit 25ec64a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kibom/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def testRegExclude(self):

for reg in self.prefs.regExcludes:

if type(reg) == list and len(reg) == 2:
if type(reg) is list and len(reg) == 2:
field_name, regex = reg
field_value = self.getField(field_name)

Expand Down Expand Up @@ -456,7 +456,7 @@ def testRegInclude(self):

for reg in self.prefs.regIncludes:

if type(reg) == list and len(reg) == 2:
if type(reg) is list and len(reg) == 2:
field_name, regex = reg
field_value = self.getField(field_name)

Expand Down
2 changes: 1 addition & 1 deletion kibom/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

KIBOM_VERSION = "1.9.0"
KIBOM_VERSION = "1.9.1"

0 comments on commit 25ec64a

Please sign in to comment.