Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szpajder committed Aug 21, 2023
1 parent 7208892 commit 3147aa0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")

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 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

Expand Down

0 comments on commit 3147aa0

Please sign in to comment.