Skip to content

Commit

Permalink
Release v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Jan 20, 2018
2 parents ab3c992 + f109963 commit a4983e0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
16 changes: 11 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ matrix:
- os: linux
env: _CC=gcc-6 _CXX=g++-6 _BUILD=-DCMAKE_BUILD_TYPE=Release
- os: linux
env: _CC=gcc-6 _CXX=g++-6 _BUILD=-DCMAKE_BUILD_TYPE=MinSizeRel
env: _CC=gcc-6 _CXX=g++-6 _BUILD=-DCMAKE_BUILD_TYPE=MinSizeRel
- os: linux
env: _CC=gcc-6 _CXX=g++-6 _BUILD=-DCMAKE_CXX_STANDARD=14
- os: linux
env: _CC=gcc-6 _CXX=g++-6 _BUILD="-DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=14"
- os: linux
env: _CC=gcc-6 _CXX=g++-6 _BUILD="-DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_CXX_STANDARD=14"
- os: linux
env: _CC=clang-3.9 _CXX=clang++-3.9 _BUILD=-DCMAKE_CXX_STANDARD=14
- os: linux
Expand All @@ -31,18 +37,18 @@ matrix:
env: _CC=clang-3.9 _CXX=clang++-3.9 _BUILD="-DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_CXX_STANDARD=14"

before_install:
- sudo add-apt-repository ppa:beineri/opt-qt551 -y
- sudo add-apt-repository ppa:beineri/opt-qt562-trusty -y
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:george-edison55/precise-backports -y
- sudo add-apt-repository ppa:george-edison55/cmake-3.x -y
- wget -O - http:https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-add-repository "deb http:https://apt.llvm.org/precise/ llvm-toolchain-precise-3.9 main" -y
- sudo apt-get update -q
- sudo apt-get install g++-5 g++-6 clang-3.9 cmake cmake-data qt55declarative qt55serialport -y
- sudo apt-get install g++-5 g++-6 clang-3.9 cmake cmake-data qt56base qt56serialport -y

before_script:
- mkdir build
- cd build
- source /opt/qt55/bin/qt55-env.sh
- source /opt/qt56/bin/qt56-env.sh
- CC=${_CC} CXX=${_CXX} cmake .. -DCC_UBLOX_FULL_SOLUTION=ON ${_BUILD}

script:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ set (CC_EXTERNAL_TGT "comms_champion_external")
macro (externals install_dir build_cc)
include(ExternalProject)

set (cc_tag "v0.21")
set (cc_tag "v0.23")
set (cc_main_dir "${CMAKE_BINARY_DIR}/comms_champion")
set (cc_src_dir "${cc_main_dir}/src")
set (cc_bin_dir "${cc_main_dir}/build")
Expand Down
8 changes: 3 additions & 5 deletions include/ublox/Stack.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,16 @@ using DataField =
/// The types of the messages must be bundled in
/// <a href="http:https://en.cppreference.com/w/cpp/utility/tuple">std::tuple</a>.
/// @tparam TMsgAllocOptions The contents of this template parameter are passed
/// as options to
/// <a href="https://dl.dropboxusercontent.com/u/46999418/comms_champion/comms/html/classcomms_1_1protocol_1_1MsgIdLayer.html">comms::protocol::MsgIdLayer</a>
/// as options to @b comms::protocol::MsgIdLayer
/// protocol layer in @b COMMS library. They are used to specify whether
/// dynamic memory allocation is allowed or "in place" allocation for
/// message objects must be implemented. It is expected to be either
/// single @b COMMS library option or multiple options bundled in
/// <a href="http:https://en.cppreference.com/w/cpp/utility/tuple">std::tuple</a>.
/// @tparam TDataFieldStorageOptions The contents of this template parameters
/// are passed to the definition of storage field of
/// <a href="https://dl.dropboxusercontent.com/u/46999418/comms_champion/comms/html/classcomms_1_1protocol_1_1MsgDataLayer.html">comms::protocol::MsgDataLayer</a>
/// layer. The field is a variant of
/// <a href="https://dl.dropboxusercontent.com/u/46999418/comms_champion/comms/html/classcomms_1_1field_1_1ArrayList.html">comms::field::ArrayList</a>
/// @b comms::protocol::MsgDataLayer
/// layer. The field is a variant of @b comms::field::ArrayList
/// which uses <a href="http:https://en.cppreference.com/w/cpp/container/vector">std::vector</a>
/// as its internal storage by default. The option(s) specified in this
/// template parameter is/are forwarded to the definition of the storage
Expand Down

0 comments on commit a4983e0

Please sign in to comment.