@@ -39,27 +39,27 @@ POSSIBILITY OF SUCH DAMAGE.
3939
4040#define LIBTORRENT_VERSION_MAJOR 2
4141#define LIBTORRENT_VERSION_MINOR 0
42- #define LIBTORRENT_VERSION_TINY 9
42+ #define LIBTORRENT_VERSION_TINY 10
4343
4444// the format of this version is: MMmmtt
4545// M = Major version, m = minor version, t = tiny version
4646#define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000 ) + (LIBTORRENT_VERSION_MINOR * 100 ) + LIBTORRENT_VERSION_TINY)
4747
48- #define LIBTORRENT_VERSION " 2.0.9 .0"
49- #define LIBTORRENT_REVISION " 559e52ca3 "
48+ #define LIBTORRENT_VERSION " 2.0.10 .0"
49+ #define LIBTORRENT_REVISION " dacf64c50 "
5050
5151namespace libtorrent {
5252
5353 // the major, minor and tiny versions of libtorrent
5454 constexpr int version_major = 2 ;
5555 constexpr int version_minor = 0 ;
56- constexpr int version_tiny = 9 ;
56+ constexpr int version_tiny = 10 ;
5757
5858 // the libtorrent version in string form
59- constexpr char const * version_str = " 2.0.9 .0" ;
59+ constexpr char const * version_str = " 2.0.10 .0" ;
6060
6161 // the git commit of this libtorrent version
62- constexpr std::uint64_t version_revision = 0x559e52ca3 ;
62+ constexpr std::uint64_t version_revision = 0xdacf64c50 ;
6363
6464 // returns the libtorrent version as string form in this format:
6565 // "<major>.<minor>.<tiny>.<tag>"
0 commit comments