Skip to content

Commit a236c11

Browse files
committed
Merge branch 'release/v14.1.0' into stable
2 parents c4b1b21 + d3226d8 commit a236c11

13 files changed

Lines changed: 1580 additions & 816 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cmake_minimum_required( VERSION 3.7.2 )
1010

1111
project( GNSSTK )
1212
set( GNSSTK_VERSION_MAJOR "14" )
13-
set( GNSSTK_VERSION_MINOR "0" )
13+
set( GNSSTK_VERSION_MINOR "1" )
1414
set( GNSSTK_VERSION_PATCH "0" )
1515
set( GNSSTK_VERSION "${GNSSTK_VERSION_MAJOR}.${GNSSTK_VERSION_MINOR}.${GNSSTK_VERSION_PATCH}" )
1616

ChangeLog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Version 14.1.0 Monday February 27, 2023
2+
3+
Modifications by Author
4+
-----------------------
5+
Taben Malik <malik@arlut.utexas.edu> (3):
6+
Hiding link from pydata-sphinx-theme due to browser incompatibilities
7+
Missing TropCorrectors in SWIG
8+
PRSolution Cleanup
9+
10+
11+
112
# Version 14.0.0 Tuesday December 20, 2022
213

314
Modifications by Author

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "GNSS ToolKit Software Library"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 14.0.0
41+
PROJECT_NUMBER = 14.1.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

RELNOTES.md

Lines changed: 12 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,22 @@
1-
GNSSTk 14.0.0 Release Notes
1+
GNSSTk 14.1.0 Release Notes
22
========================
33

4-
* This release introduces a major update to the toolkit.
5-
* It includes the following:
6-
* Refactoring HelmertTransform into HelmertTransformer and reference frames into RefFrame.
7-
* Adding signal details to nav dump methods.
8-
* Adding group path delay calculator GroupPathCorr and related classes. (See New Modules below).
9-
* Refactoring duplicate raw range implementations into a single class.
10-
* Moving NewNav enums to the namespace level for consistency.
11-
* Deprecating support for Debian 9.
12-
* Adding support for Ubuntu20.04 (focal)
13-
* Additionally, it contains minor library updates and bug fixes
4+
* This release includes the following:
5+
* Adding SWIG bindings for MOPS and GCAT TropModel correctors.
6+
* Refactoring PRSolution to update style and decompose large function.
7+
* Fixing swig4.0 compile time issues.
8+
* Fixing sphinx docs hidden navigation bar.
149

15-
Updates since v13.8.0
10+
Updates since v14.0.0
1611
---------------------
1712

1813
**Build System and Test Suite**
19-
* Update the clean build parameter
20-
* Update SWIG cmake rules now that we're no longer supporting cmake version 2
21-
* Update compiler to Visual Studio 2019 in the Windows build scripts.
22-
23-
**Gitlab CI**
24-
* Update Deprecated Debian 9 build
25-
* Add Ubuntu 20.04 pipeline jobs
14+
* Fix swig4.0 compile time issues.
2615

2716
**Library Changes**
28-
* Add group path delay calculator (GroupPathCorr and related classes).
29-
* Update Refactor HelmertTransform into HelmertTransformer
30-
* Update Refactor reference frames into RefFrame
31-
* Update the nonsensical ISC interface in NavLibrary with one that does make sense.
32-
* Update Refactor duplicate raw range implementations into a single class.
33-
* Update group path corrector navLib from shared_ptr to reference to work around swig/python problem
34-
* Update Move NewNav enums to the namespace level for consistency
35-
* Update NewNav docs
36-
* Add NavData::clone method
37-
* Add signal details to nav dump methods
38-
* Add group path delay calculator (GroupPathCorr and related classes).
39-
* Add a CorrectorType that was missed
17+
* Add SWIG bindings for MOPS and GCAT TropModel correctors.
18+
* Update refactor PRSolution to update style and decompose large functions.
4019

41-
Fixes since v13.8.0
20+
Fixes since v14.0.0
4221
--------------------
43-
* Fix swig build error
44-
45-
Removed Code due to Deprecation
46-
-------------------------------
47-
core/lib/GNSSEph/GloEphemeris.cpp
48-
core/lib/GNSSEph/GloEphemeris.hpp
49-
50-
New Modules
51-
-------------------------------
52-
core/lib/FileHandling/MetReader.hpp
53-
core/lib/GNSSCore/BCISCorrector.cpp
54-
core/lib/GNSSCore/BCISCorrector.hpp
55-
core/lib/GNSSCore/BCIonoCorrector.cpp
56-
core/lib/GNSSCore/BCIonoCorrector.hpp
57-
core/lib/GNSSCore/CorrDupHandling.cpp
58-
core/lib/GNSSCore/CorrDupHandling.hpp
59-
core/lib/GNSSCore/CorrectionResult.hpp
60-
core/lib/GNSSCore/CorrectionResults.cpp
61-
core/lib/GNSSCore/CorrectionResults.hpp
62-
core/lib/GNSSCore/CorrectorType.cpp
63-
core/lib/GNSSCore/CorrectorType.hpp
64-
core/lib/GNSSCore/GroupPathCorr.cpp
65-
core/lib/GNSSCore/GroupPathCorr.hpp
66-
core/lib/GNSSCore/GroupPathCorrector.hpp
67-
core/lib/GNSSCore/HelmertTransformer.cpp
68-
core/lib/GNSSCore/HelmertTransformer.hpp
69-
core/lib/GNSSCore/RefFrame.cpp
70-
core/lib/GNSSCore/RefFrame.hpp
71-
core/lib/GNSSCore/RefFrameRlz.cpp
72-
core/lib/GNSSCore/RefFrameRlz.hpp
73-
core/lib/GNSSCore/RefFrameSys.cpp
74-
core/lib/GNSSCore/RefFrameSys.hpp
75-
core/lib/GNSSCore/TransformLibrary.cpp
76-
core/lib/GNSSCore/TransformLibrary.hpp
77-
core/lib/GNSSCore/Transformer.hpp
78-
core/lib/GNSSCore/TropCorrector.hpp
79-
core/lib/GNSSEph/RawRange.cpp
80-
core/lib/GNSSEph/RawRange.hpp
81-
core/lib/NewNav/GLOFNavPCode.cpp
82-
core/lib/NewNav/GLOFNavPCode.hpp
83-
core/lib/NewNav/GLOFNavSatType.hpp
84-
core/lib/NewNav/GPSLNavL2Codes.cpp
85-
core/lib/NewNav/GPSLNavL2Codes.hpp
86-
core/tests/FileHandling/MetReader_T.cpp
87-
core/tests/GNSSCore/BCISCorrector_T.cpp
88-
core/tests/GNSSCore/BCIonoCorrector_T.cpp
89-
core/tests/GNSSCore/CorrDupHandling_T.cpp
90-
core/tests/GNSSCore/CorrectionResults_T.cpp
91-
core/tests/GNSSCore/CorrectorType_T.cpp
92-
core/tests/GNSSCore/GroupPathCorr_T.cpp
93-
core/tests/GNSSCore/GroupPathCorrector_T.cpp
94-
core/tests/GNSSCore/HelmertTransformer_T.cpp
95-
core/tests/GNSSCore/RawRange_T.cpp
96-
core/tests/GNSSCore/RefFrameRlz_T.cpp
97-
core/tests/GNSSCore/RefFrameSys_T.cpp
98-
core/tests/GNSSCore/TransformLibrary_T.cpp
99-
core/tests/GNSSCore/TropCorrector_T.cpp
100-
core/tests/Geomatics/PreciseRange_T.cpp
101-
swig/SWIGHelpers/std_tuple.i
102-
swig/tests/__init__.py
22+
* Fix sphinx docs hidden navigation bar

0 commit comments

Comments
 (0)