https://bugs.kde.org/show_bug.cgi?id=370448
--- Comment #4 from howl <howl....@gmail.com> --- Reviewing the procedure in the 4 series when tagging a release of KTorrent, for example a future 5.1.3, this should be done in libktcore/ktversion.h: #include <version.h> #include "util/constants.h" -#define KT_VERSION_MACRO "5.1.2" +#define KT_VERSION_MACRO "5.1.3" namespace kt { const bt::Uint32 MAJOR = 5; const bt::Uint32 MINOR = 1; - const bt::Uint32 RELEASE = 2; - const bt::VersionType VERSION_TYPE = bt::DEVEL; + const bt::Uint32 RELEASE = 3; + const bt::VersionType VERSION_TYPE = bt::NORMAL; const char VERSION_STRING[] = KT_VERSION_MACRO; } Also when the release is a Release Candidate the way is: #define KT_VERSION_MACRO "5.2rc1" const bt::Uint32 MAJOR = 5; const bt::Uint32 MINOR = 2; const bt::Uint32 RELEASE = 1; VERSION_TYPE = bt::RELEASE_CANDIDATE -- You are receiving this mail because: You are watching all bug changes.