diff --git a/CMakeLists.txt b/CMakeLists.txt index ac0989b15..1d6394acd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,8 +41,8 @@ set(TR_NAME ${PROJECT_NAME}) # "Z" for unsupported trunk builds, # "0" for stable, supported releases # these should be the only two lines you need to change -set(TR_USER_AGENT_PREFIX "2.92") -set(TR_PEER_ID_PREFIX "-TR2920-") +set(TR_USER_AGENT_PREFIX "2.93") +set(TR_PEER_ID_PREFIX "-TR2930-") string(REGEX MATCH "^([0-9]+)\\.([0-9]+).*" TR_VERSION "${TR_USER_AGENT_PREFIX}") set(TR_VERSION_MAJOR "${CMAKE_MATCH_1}") diff --git a/NEWS b/NEWS index 5f77a6e92..97278fa7f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +=== Transmission 2.93 (2018/01/xx) === +[https://github.com/transmission/transmission/releases/tag/2.93 All tickets closed by this release] +==== All Platforms ==== + * Fix CVE-2018-5702 (#468) + * Fix crash on handshake if establishing DH shared secret fails (#27) + * Fix crash when switching to next tracker during announcement (#297) + * Fix potential issue during password salt extraction in OOM situation (#141) + * Workaround `glib_DEFUN`- and `glib_REQUIRE`-related configuration issue (#215) +==== Mac Client ==== + * Fix uncaught exception when dragging multiple items between groups (#51) + * Don't hard-code libcrypto version to 0.9.8 in Xcode project (#71) + === Transmission 2.92 (2016/03/06) === [http://trac.transmissionbt.com/query?milestone=2.92&group=component&order=severity All tickets closed by this release] ==== Mac Client ==== diff --git a/configure.ac b/configure.ac index 339bdd911..aff673b52 100644 --- a/configure.ac +++ b/configure.ac @@ -3,8 +3,8 @@ dnl STATUS: "X" for prerelease beta builds, dnl "Z" for unsupported trunk builds, dnl "0" for stable, supported releases dnl these should be the only two lines you need to change -m4_define([user_agent_prefix],[2.92]) -m4_define([peer_id_prefix],[-TR2920-]) +m4_define([user_agent_prefix],[2.93]) +m4_define([peer_id_prefix],[-TR2930-]) AC_INIT([transmission],[user_agent_prefix],[https://github.com/transmission/transmission]) AC_SUBST(USERAGENT_PREFIX,[user_agent_prefix])