From 345dc3441e6d1c1f1085ffc35e446f7d7b76ef37 Mon Sep 17 00:00:00 2001 From: Tomasz Lemiech Date: Tue, 26 Feb 2019 20:33:32 +0100 Subject: [PATCH] Version 1.2.0 --- CHANGELOG.md | 14 ++++++++++++++ CMakeLists.txt | 2 +- README.md | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1deb386..72d3f0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # ChangeLog +## Version 1.2.0 (2019-02-26): +* Added support for decoding Media Independent Aircraft Messaging (MIAM - ACARS + label MA) version 1 and 2. All types of MIAM frames are decoded, provided that + they fit in a single ACARS message. In case of multi-fragment MIAM messages + only the first fragment is decoded (partially) due to lack of message + reassembly support in libacars. This will be addressed in a future release. + MIAM uses DEFLATE compression, hence libacars now optionally depends on zlib. + If zlib is not available at the build stage, MIAM decompression code will be + disabled and many messages will be left undecoded. +* `decode_acars_apps` is a new example application. It decodes all ACARS + applications supported by libacars. This makes `decode_arinc` application + obsolete - it will be removed in the next release. +* Minor bugfixes in the build system. + ## Version 1.1.0 (2019-01-18): * Incompatible API change: so far `LA_VERSION` was a preprocessor macro, which was expanded during compilation of any program using it. As a result, diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b1087f..dba67a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.1) project (libacars C) set (LA_VERSION_MAJOR 1) -set (LA_VERSION_MINOR 1) +set (LA_VERSION_MINOR 2) set (LA_VERSION_PATCH 0) set (LA_VERSION "${LA_VERSION_MAJOR}.${LA_VERSION_MINOR}.${LA_VERSION_PATCH}" ) diff --git a/README.md b/README.md index dd05884..32c14d4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ libacars is a library for decoding various ACARS message payloads. -Current stable version: **1.1.0** (released Jan 18, 2019) +Current stable version: **1.2.0** (released Feb 26, 2019) ## Supported message types