From 42ac1af4b2d6f2c623777a8cd6a78dcde92133d9 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 10 May 2022 16:55:22 +0200 Subject: [PATCH] update changelog --- CHANGELOG.md | 2 ++ src/fsfw/versionAutogen.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c9f5a91..9aaa942a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). versions since the last tag - Additional information is set to the last part of the git describe output for `FSFW_VERSION` now. - Version still need to be hand-updated if the FSFW is not included as a submodule for now. + - CMake will auto-generate a file named `versionAutogen.cpp` on each rebuild which contains + the version retrieved with git - IPC Message Queue Handling: Allow passing an optional `MqArgs` argument into the MessageQueue creation call. It allows passing context information and an arbitrary user argument into the message queue. Also streamlined and simplified `MessageQueue` implementation for all OSALs diff --git a/src/fsfw/versionAutogen.cpp b/src/fsfw/versionAutogen.cpp index 8f229b22..0fe547b0 100644 --- a/src/fsfw/versionAutogen.cpp +++ b/src/fsfw/versionAutogen.cpp @@ -5,6 +5,6 @@ namespace fsfw { const int FSFW_VERSION_MAJOR = 4; const int FSFW_VERSION_MINOR = 0; const int FSFW_VERSION_REVISION = 0; -const char FSFW_VCS_INFO[] = "290-gac95e8f2"; +const char FSFW_VCS_INFO[] = "291-g1e5ba021"; };