Skip to content

Commit

Permalink
Merge pull request #61 from semuconsulting/fix-NTRIP-caster-HTTP-head…
Browse files Browse the repository at this point in the history
…er-issue

RELEASE CANDIDATE 1.0.23
  • Loading branch information
semuadmin committed Apr 11, 2024
2 parents f4c77e9 + 92ed5ec commit 56a68ca
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"editor.formatOnSave": true,
"modulename": "${workspaceFolderBasename}",
"distname": "${workspaceFolderBasename}",
"moduleversion": "1.0.22"
"moduleversion": "1.0.23"
}
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# pygnssutils Release Notes

### RELEASE 1.0.23

FIXES:

1. Fix to socket_server NTRIP caster source table HTTP response which was causing some NTRIP clients to timeout. Fixes [#60](https://github.com/semuconsulting/pygnssutils/issues/60)

### RELEASE 1.0.22

ENHANCEMENTS:
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.0.22"
version = "1.0.23"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
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.22"
__version__ = "1.0.23"
1 change: 1 addition & 0 deletions src/pygnssutils/socket_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ def _format_sourcetable(self) -> str:
+ "Connection: close\r\n"
+ "Content-Type: gnss/sourcetable\r\n"
+ f"Content-Length: {len(sourcetable) + len(sourcefooter)}\r\n"
+ "\r\n" # necessary to separate body from header
+ sourcetable
+ sourcefooter
)
Expand Down

0 comments on commit 56a68ca

Please sign in to comment.