Skip to content

Commit

Permalink
update to 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
semuadmin committed Oct 30, 2024
1 parent be49bbd commit 6ac13e3
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 @@
"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

0 comments on commit 6ac13e3

Please sign in to comment.