From 25b3961f6c4101f8d818cae2207165f9f5616b48 Mon Sep 17 00:00:00 2001 From: Taben Malik Date: Thu, 24 Aug 2023 11:34:54 -0500 Subject: [PATCH 1/3] Making gnsstk-apps_enable.sh source commands POSIX compliant. --- debian/gnsstk-apps_enable.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/debian/gnsstk-apps_enable.sh b/debian/gnsstk-apps_enable.sh index 63243909d..092fab184 100644 --- a/debian/gnsstk-apps_enable.sh +++ b/debian/gnsstk-apps_enable.sh @@ -1,4 +1,3 @@ -#!/bin/bash # This file should be sourced and not executed as bash script. Ex. source /etc/profile.d/gnsstk-apps_enable.sh GNSSTK_APPS_VER=__VER__ @@ -9,11 +8,11 @@ FILE=/etc/toolkits.conf if [ -f "$FILE" ]; then echo "found $FILE so sourcing it" - set -o allexport && source $FILE && set +o allexport + set -o allexport && . $FILE && set +o allexport fi echo "gnsstk-apps major version being used is $GNSSTK_APPS_VER" -source /usr/share/gnsstk__VER__-apps/enable +. /usr/share/gnsstk__VER__-apps/enable echo -e "\nThe following env variables have been set or are already set" -env | grep 'LD_LIBRARY_PATH\|CPLUS_INCLUDE_PATH\|PYTHONPATH\|^PATH' \ No newline at end of file +env | grep 'LD_LIBRARY_PATH\|CPLUS_INCLUDE_PATH\|PYTHONPATH\|^PATH' From 416b8fb77f638511635bca382544435ebeb5effe Mon Sep 17 00:00:00 2001 From: Sarah Magliocca Date: Wed, 8 Nov 2023 08:36:38 -0600 Subject: [PATCH 2/3] Replacing Brian Tolman as a CODEOWNER with GNSS Geospatial PO and others --- CODEOWNERS | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index c8db8aaba..f97f89d3a 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -16,23 +16,23 @@ ref/usersguide/ @johnk @renfrob @rain # --------------------- # Core apps -core/apps/ @johnk @btolman -core/apps/positioning/ @btolman @renfrob -core/apps/Rinextools/ @btolman @renfrob +core/apps/ @johnk @magliocca @evillalba +core/apps/positioning/ @magliocca @renfrob @malik @evillalba +core/apps/Rinextools/ @magliocca @renfrob @evillalba # Core tests core/tests/ @johnk @anthony @renfrob # Ext -- unsupported & unmaintained, not part of the API ext/ @johnk @dbarber -ext/apps/filetools/ @btolman @renfrob -ext/apps/geomatics/ @btolman +ext/apps/filetools/ @magliocca @renfrob +ext/apps/geomatics/ @magliocca @butcher ext/apps/rfw/ @johnk @renfrob # Other data/ @dbarber @kuck deprecated/ @dbarber @kuck -examples/ @johnk @btolman @renfrob +examples/ @johnk @magliocca @renfrob [CPP Reviewers] From 253cf494c81f2db8b6da475a1ac2d2a8c1a3ee9b Mon Sep 17 00:00:00 2001 From: David Barber Date: Mon, 18 Dec 2023 14:21:49 -0600 Subject: [PATCH 3/3] Release v14.1.1 --- CMakeLists.txt | 2 +- ChangeLog.md | 12 ++++++++++++ Doxyfile | 2 +- RELNOTES.md | 18 +++++------------- changes.txt | 2 ++ debian/changelog | 8 ++++++++ rpm_files/SPECS/gnsstk-apps.spec | 6 +++++- 7 files changed, 34 insertions(+), 16 deletions(-) create mode 100644 changes.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 72b33e724..c9148df6b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_policy( VERSION 3.7.2 ) project( GNSSTK_APPS ) set( GNSSTK_APPS_VERSION_MAJOR "14" ) set( GNSSTK_APPS_VERSION_MINOR "1" ) -set( GNSSTK_APPS_VERSION_PATCH "0" ) +set( GNSSTK_APPS_VERSION_PATCH "1" ) set( GNSSTK_APPS_VERSION "${GNSSTK_APPS_VERSION_MAJOR}.${GNSSTK_APPS_VERSION_MINOR}.${GNSSTK_APPS_VERSION_PATCH}" ) set( CPACK_PACKAGE_VERSION_MAJOR ${GNSSTK_APPS_VERSION_MAJOR} ) set( CPACK_PACKAGE_VERSION_MINOR ${GNSSTK_APPS_VERSION_MINOR} ) diff --git a/ChangeLog.md b/ChangeLog.md index 08c8c8f9c..ad5126e97 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,15 @@ +# Version 14.1.1 Monday December 18, 2023 + +Modifications by Author +----------------------- + Sarah Magliocca (1): + Replacing Brian Tolman as a CODEOWNER with GNSS Geospatial PO and others + + Taben Malik (1): + Making gnsstk-apps_enable.sh source commands POSIX compliant. + + + # Version 14.1.0 Monday August 14, 2023 Modifications by Author diff --git a/Doxyfile b/Doxyfile index a2aab79a5..17f49c560 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "GPS ToolKit Software Library" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 14.1.0 +PROJECT_NUMBER = 14.1.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/RELNOTES.md b/RELNOTES.md index e356da998..9d5dabe7f 100755 --- a/RELNOTES.md +++ b/RELNOTES.md @@ -1,21 +1,13 @@ -GNSSTk-APPs 14.1.0 Release Notes +GNSSTk-APPs 14.1.1 Release Notes ======================== - * This release includes the following: - * Fixing WhereSat.cpp to no longer filter out almanac subframes. - * Fixing expected time offset output in gnsstk data submodule repo. - * Co-installation of major versions of debian packages. + * This release includes updates to the build system and GitLab CICD. -Updates since v14.0.0 +Updates since v14.1.0 --------------------- **Build System and Test Suite** - * Update create debian/ubuntu major version coinstallable package + * Update gnsstk-apps_enable.sh source commands to be POSIX compliant. **Gitlab CI** - * Fix deb11 optional pipeline jobs - -Fixes since v14.0.0 --------------------- - * Fix expected time offset output. - * Fix WhereSat.cpp to no longer filter out almanac subframes when loading data allowing the use-alm flag to function properly \ No newline at end of file + * Update codeowners file to replace contributors that left \ No newline at end of file diff --git a/changes.txt b/changes.txt new file mode 100644 index 000000000..898567d98 --- /dev/null +++ b/changes.txt @@ -0,0 +1,2 @@ + * Update gnsstk-apps_enable.sh source commands to be POSIX compliant. + * Update codeowners file to replace contributors that left diff --git a/debian/changelog b/debian/changelog index f27424ca4..39bdf8ef7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +gnsstk-apps (14.1.1-1) focal; urgency=low + + * Updated to version 14.1.1 + * Update gnsstk-apps_enable.sh source commands to be POSIX compliant. + * Update codeowners file to replace contributors that left + + -- David Barber Mon, 18 Dec 2023 13:52:48 -0600 + gnsstk-apps (14.1.0-1) focal; urgency=low * Updated to version 14.1.0 diff --git a/rpm_files/SPECS/gnsstk-apps.spec b/rpm_files/SPECS/gnsstk-apps.spec index 00725b41b..eb6812715 100644 --- a/rpm_files/SPECS/gnsstk-apps.spec +++ b/rpm_files/SPECS/gnsstk-apps.spec @@ -1,5 +1,5 @@ %define name gnsstk-apps -%define version 14.1.0 +%define version 14.1.1 %define release 1 Summary: GNSS Toolkit @@ -53,6 +53,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Dec 18 2023 David Barber +- Updated for v14.1.1 release +- Update codeowners file to replace contributors that left +- Update gnsstk-apps_enable.sh source commands to be POSIX compliant. * Mon Aug 14 2023 David Barber - Updated for v14.1.0 release - Update create debian/ubuntu major version coinstallable package