Skip to content

Commit

Permalink
Merge pull request #153 from semuconsulting/RC-1.2.43
Browse files Browse the repository at this point in the history
RC 1.2.43
  • Loading branch information
semuadmin committed Jun 4, 2024
2 parents b9da2f6 + 1d7eb38 commit 73a3e2c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 15 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.2.42",
"moduleversion": "1.2.43",
}
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# pyubx2 Release Notes

### RELEASE 1.2.43

FIXES:

1. Fix typo in NAV-PVT definition = difSoln is now diffSoln. Fixes [#152](https://github.com/semuconsulting/pyubx2/issues/152). **NB:** any existing references to `msg.difSoln` will need to be changed to `msg.diffSoln` in user code.

### RELEASE 1.2.42

ENHANCEMENTS:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pyubx2"
authors = [{ name = "semuadmin", email = "[email protected]" }]
maintainers = [{ name = "semuadmin", email = "[email protected]" }]
description = "UBX protocol parser and generator"
version = "1.2.42"
version = "1.2.43"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -33,7 +33,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: GIS",
]

dependencies = ["pynmeagps >= 1.0.36", "pyrtcm >= 1.1.1"]
dependencies = ["pynmeagps >= 1.0.37", "pyrtcm >= 1.1.1"]

[project.urls]
homepage = "https://github.com/semuconsulting/pyubx2"
Expand Down
2 changes: 1 addition & 1 deletion src/pyubx2/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
:license: BSD 3-Clause
"""

__version__ = "1.2.42"
__version__ = "1.2.43"
2 changes: 1 addition & 1 deletion src/pyubx2/ubxtypes_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -2429,7 +2429,7 @@
X1,
{
"gnssFixOk": U1,
"difSoln": U1,
"diffSoln": U1,
"psmState": U3,
"headVehValid": U1,
"carrSoln": U2,
Expand Down
Loading

0 comments on commit 73a3e2c

Please sign in to comment.