Skip to content

Commit

Permalink
Merge pull request #68 from semuconsulting/RC-1.0.28
Browse files Browse the repository at this point in the history
Rc 1.0.28
  • Loading branch information
semuadmin committed Jun 4, 2024
2 parents 3dd5eac + dd68890 commit 572c75e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"python3.8InterpreterPath": "/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8",
"modulename": "${workspaceFolderBasename}",
"distname": "${workspaceFolderBasename}",
"moduleversion": "1.0.27"
"moduleversion": "1.0.28"
}
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# pygnssutils Release Notes

### RELEASE 1.0.28

ENHANCEMENTS:


### RELEASE 1.0.27

ENHANCEMENTS:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pygnssutils"
authors = [{ name = "semuadmin", email = "[email protected]" }]
maintainers = [{ name = "semuadmin", email = "[email protected]" }]
description = "GNSS Command Line Utilities"
version = "1.0.27"
version = "1.0.28"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
Expand Down Expand Up @@ -37,8 +37,8 @@ dependencies = [
"certifi>=2024.0.0",
"paho-mqtt>=1.6.0", # waiting for >=2.0.0 in Conda
"pyserial>=3.5",
"pyspartn>=1.0.0",
"pyubx2>=1.2.40",
"pyspartn>=1.0.1",
"pyubx2>=1.2.43",
]

[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion src/pygnssutils/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
:license: BSD 3-Clause
"""

__version__ = "1.0.27"
__version__ = "1.0.28"
2 changes: 1 addition & 1 deletion src/pygnssutils/ubxload.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, file: object, stream: object, **kwargs):
self._serial_lock = Lock()
self._out_queue = Queue()
self._stop_event = Event()
self._last_ack = datetime.fromordinal(1)
self._last_ack = datetime.now()

self._write_thread = Thread(
target=self._write_data,
Expand Down

0 comments on commit 572c75e

Please sign in to comment.