Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to 1.1.6 #101

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
"python.defaultInterpreterPath": "python3",
"modulename": "${workspaceFolderBasename}",
"distname": "${workspaceFolderBasename}",
"moduleversion": "1.1.5"
"moduleversion": "1.1.6"
}
8 changes: 7 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# pygnssutils Release Notes

### RELEASE 1.1.6

FIXES:

1. Remove print() statement.

### RELEASE 1.1.5

ENHANCEMENTS:

1. Streamline gnssntripclient and improve exit handling when invoked via PyGPSClient.
1. Enhance gnssntripclient exit and exception handling - Fixes #98.

### RELEASE 1.1.4

Expand Down
2 changes: 1 addition & 1 deletion 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.1.5"
version = "1.1.6"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
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.1.5"
__version__ = "1.1.6"
3 changes: 1 addition & 2 deletions src/pygnssutils/gnssntripclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def _read_thread(
self._sleepevent.wait(self._retryinterval * (2**self._retrycount))

self._close_connection(sock)
self.logger.debug("exiting read thread")
self.logger.debug("Socket connection closed")

def _open_connection(self, settings: dict) -> socket:
"""
Expand Down Expand Up @@ -465,7 +465,6 @@ def _parse_response_header(self, data: bytes) -> bytes:
hdr, bdy = hdrbdy
# some legacy casters use cp1250 rather than utf-8
hdr = hdr.decode(errors="backslashreplace").split("\r\n")
print("HDR:-", hdr, hdr[0])
status = hdr[0].split(" ", 3)
self._response_status = {
"protocol": status[0],
Expand Down