Skip to content

Commit

Permalink
Merge pull request #65 from mbridak/development
Browse files Browse the repository at this point in the history
fix bug in get_logged_band.
  • Loading branch information
mbridak authored Jan 21, 2024
2 parents f1648a8 + 6d2bceb commit 9045f80
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ I wish to thank those who've contributed to the project.

## Recent Changes

- [24-1-21] Fixed crash in get_logged_band when out of band.
- [24-1-16.1] Fix possible crash when cabrillo generated without a station call.
- [24-1-16] Added Stew Perry Topband.
- [24-1-15] Added the Phone Weekly Test.
Expand Down
2 changes: 1 addition & 1 deletion not1mm/lib/ham_utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def get_logged_band(freq: str) -> str:
return "902"
if 1300000000 > frequency > 1240000000:
return "1296"
if 10500000000 > freq > 2300000000:
if 10500000000 > frequency > 2300000000:
return "2300+"
return "0"

Expand Down
2 changes: 1 addition & 1 deletion not1mm/lib/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""It's the version"""
__version__ = "24.1.16.1"
__version__ = "24.1.21"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "not1mm"
version = "24.1.16.1"
version = "24.1.21"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 9045f80

Please sign in to comment.