File size: 1,040 Bytes
2492322 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | // Copyright (c) 2019, QuantStack and Mamba Contributors
//
// Distributed under the terms of the BSD 3-Clause License.
//
// The full license is in the file LICENSE, distributed with this software.
#ifndef LIBMAMBA_VERSION_HPP
#define LIBMAMBA_VERSION_HPP
#include <array>
#include <string>
#define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 3
#define LIBMAMBA_VERSION_PATCH 2
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define LIBMAMBA_VERSION_STRING "2.3.2"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
// Binary version
#define LIBMAMBA_BINARY_CURRENT 5
#define LIBMAMBA_BINARY_REVISION 0
#define LIBMAMBA_BINARY_AGE 1
namespace mamba
{
std::string version();
[[deprecated("will be replaced in a future minor version")]]
std::array<int, 3> version_arr();
}
#endif
|