Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
szpajder committed Sep 20, 2019
1 parent 7da77f0 commit d064341
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# ChangeLog

## Version 1.3.1 (2019-09-20):
* Binary releases for Windows were mistakenly built with AVX instruction set
enabled which caused the lib to fail on older CPUs (https://github.com/szpajder/libacars/issues/3).
Thanks to G7GQW for reporting and to Jonti Olds for analysis.
* Downgraded optimization level for release builds from -O3 to -O2 to reduce
chances of similar problems for cross-platform builds.

## 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.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project (libacars C)

set (LA_VERSION_MAJOR 1)
set (LA_VERSION_MINOR 3)
set (LA_VERSION_PATCH 0)
set (LA_VERSION_PATCH 1)
set (LA_VERSION "${LA_VERSION_MAJOR}.${LA_VERSION_MINOR}.${LA_VERSION_PATCH}"
)
set (CMAKE_C_STANDARD 11)
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: **1.3.0** (released Aug 9, 2019)
Current stable version: **1.3.1** (released Sep 20, 2019)

## Supported message types

Expand Down

0 comments on commit d064341

Please sign in to comment.