Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szpajder committed Aug 9, 2019
1 parent 12a9cae commit 6d65096
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# ChangeLog

## Version 1.3.0 (2019-08-09):
* JSON output support for all message types. Any protocol tree can be
serialized into a JSON string with `la_proto_tree_format_json()` function.
Functions for serializing each individual message type into JSON are provided
as well. Refer to `doc/API_REFERENCE.md` for details.
* `decode_acars_apps` application now supports both human readable and JSON
output. To enable JSON output, set `LA_JSON` environment variable to any
value. If `LA_JSON` is not set, the program displays human readable output.
* Small bugfixes in ACARS and MIAM decoders.

## 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
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 2)
set (LA_VERSION_MINOR 3)
set (LA_VERSION_PATCH 0)
set (LA_VERSION "${LA_VERSION_MAJOR}.${LA_VERSION_MINOR}.${LA_VERSION_PATCH}"
)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# libacars [![Build Status](https://travis-ci.com/szpajder/libacars.svg?branch=master)](https://travis-ci.com/szpajder/libacars) [![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/szpajder/libacars.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/szpajder/libacars/context:cpp)

libacars is a library for decoding various ACARS message payloads.
libacars is a library for decoding ACARS message contents.

Current stable version: **1.2.0** (released Feb 26, 2019)
Current stable version: **1.3.0** (released Aug 9, 2019)

## Supported message types

Expand Down

0 comments on commit 6d65096

Please sign in to comment.