From 3147aa0857b6d0fb8989b27445ce46278cb4bae8 Mon Sep 17 00:00:00 2001 From: Tomasz Lemiech Date: Mon, 21 Aug 2023 23:18:46 +0200 Subject: [PATCH] Version 2.2.0 --- CHANGELOG.md | 9 +++++++++ CMakeLists.txt | 4 ++-- README.md | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 772daad..7d2f926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # ChangeLog +## Version 2.2.0 (2023-08-21) + +* Support for decoding OHMA messages. These are diagnostic data exchanged with + Boeing 737MAX aircraft. Decoding requires libacars to be built with ZLIB + support. The data is encoded in JSON which libacars might optionally + pretty-print, when serializing the message as text. Pretty-printing feature + requires Jansson library. +* Support for compilation with MSVC (thx John Beniston). + ## Version 2.1.4 (2022-03-06) * Fix compile error under MS Visual C++ caused by `struct timeval` diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c3c837..26a39d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required (VERSION 3.1) project (libacars C) set (LA_VERSION_MAJOR 2) -set (LA_VERSION_MINOR 1) -set (LA_VERSION_PATCH 4) +set (LA_VERSION_MINOR 2) +set (LA_VERSION_PATCH 0) set (LA_VERSION "${LA_VERSION_MAJOR}.${LA_VERSION_MINOR}.${LA_VERSION_PATCH}") set (LA_SUBDIR "${PROJECT_NAME}-${LA_VERSION_MAJOR}") diff --git a/README.md b/README.md index 0048cae..f15e00f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ libacars is a library for decoding ACARS message contents. -Current stable version: **2.1.4** (released March 6, 2022) +Current stable version: **2.2.0** (released August 21, 2023) ## Supported message types