diff --git a/CHANGELOG b/CHANGELOG index 166cc3f51f..d9630a2459 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,5 @@ 0.1.01 (01.01.2014): -- added dedicated context menu for media content (AUIDIO and VIDEO tags); +- added dedicated context menu for media content (AUDIO and VIDEO tags); - added global history with manager; - added dialog to clear history (browsing, cookies, caches etc.); - added cache viewer (about:cache); diff --git a/CMakeLists.txt b/CMakeLists.txt index 056bfcc495..e3dcc6ba43 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 2.8.11) project(otter-browser) set(MAJOR_VERSION "0") -set(MINOR_VERSION "1") -set(PATCH_VERSION "01") +set(MINOR_VERSION "2") +set(PATCH_VERSION "01-dev") if (EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake") include(InstallRequiredSystemLibraries) diff --git a/src/core/Application.cpp b/src/core/Application.cpp index 2d2e55f86c..bd15a9daa9 100644 --- a/src/core/Application.cpp +++ b/src/core/Application.cpp @@ -48,7 +48,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv), m_localServer(NULL) { setApplicationName(QLatin1String("Otter")); - setApplicationVersion(QLatin1String("0.1.01")); + setApplicationVersion(QLatin1String("0.2.01-dev")); m_instance = this;