Add Julian date version numbering to fuzzy_matcher.py
Add __version__ constant using Julian date format: YY.DDD.HHMM - YY: Two-digit year (25 = 2025) - DDD: Day of year (310 = November 6th) - HHMM: Time in 24-hour format (1806 = 6:06 PM) Version: 25.310.1806 This provides a clear, sortable version number that indicates exactly when the last modification was made.
This commit is contained in:
@@ -10,6 +10,9 @@ import json
|
|||||||
import logging
|
import logging
|
||||||
from glob import glob
|
from glob import glob
|
||||||
|
|
||||||
|
# Version: YY.DDD.HHMM (Julian date format: Year.DayOfYear.Time)
|
||||||
|
__version__ = "25.310.1806"
|
||||||
|
|
||||||
# Setup logging
|
# Setup logging
|
||||||
LOGGER = logging.getLogger("plugins.fuzzy_matcher")
|
LOGGER = logging.getLogger("plugins.fuzzy_matcher")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user