Skip to content

v1.3.4

Choose a tag to compare

@shyoo shyoo released this 03 Jul 19:56
4f627b2

Award Tracker v1.3.4

This release is a critical hotfix addressing a startup crash introduced in v1.3.3 where the Marriott Bonvoy plugin failed to import properly due to a missing datetime import, preventing the application from launching entirely.


?? New Features & Fixes

  • Marriott Plugin Startup Crash (Issue #99): Fixed a NameError: name 'datetime' is not defined caused by a missing from datetime import datetime import in plugins/marriott.py. The calculate_expiration method used datetime as a type annotation in its signature, which Python evaluates at class definition time, crashing the plugin manager on startup.

?? Commits in this Release

  • 2acf8b4 fix(marriott): add missing datetime import causing startup NameError (issue #99)