Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szpajder committed Feb 26, 2019
1 parent 3d18204 commit 345dc34
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 345dc34

Please sign in to comment.