/**
 * @file version.h
 * @brief Code version information
 * @author Wilkins White
 * @copyright 2022 Daxbot
 */

#ifndef LIBRTP_VERSION_H_
#define LIBRTP_VERSION_H_

/** Major version, increment for API changes. */
#define LIBRTP_VERSION_MAJOR 2

/** Minor version, increment for functionality changes. */
#define LIBRTP_VERSION_MINOR 1

/** Build version, increment for small fixes. */
#define LIBRTP_VERSION_BUILD 5

#endif // LIBRTP_VERSION_H