From a1db2ab9d20300a2f7da49d0db07524d0107dba4 Mon Sep 17 00:00:00 2001 From: Andrews Sobral Date: Sun, 24 Jul 2022 15:15:34 +0200 Subject: [PATCH] Upgraded version to 3.1.0 --- .properties | 2 +- CMakeLists.txt | 2 +- gui/qt/bgslibrary_gui.cpp | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.properties b/.properties index cd92d6b085..ef465a3fa4 100644 --- a/.properties +++ b/.properties @@ -1 +1 @@ -version=3.0.0-SNAPSHOT +version=3.1.0-SNAPSHOT diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fce603f81..6b18282191 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1) -project(bgslibrary VERSION 3.0.0) +project(bgslibrary VERSION 3.1.0) include(CheckCXXCompilerFlag) diff --git a/gui/qt/bgslibrary_gui.cpp b/gui/qt/bgslibrary_gui.cpp index 832c618c82..df6dc35756 100644 --- a/gui/qt/bgslibrary_gui.cpp +++ b/gui/qt/bgslibrary_gui.cpp @@ -3,7 +3,7 @@ int main(int argc, char *argv[]) { std::cout << "--------------------------------------------" << std::endl; - std::cout << "Background Subtraction Library v3.0.0 " << std::endl; + std::cout << "Background Subtraction Library v3.1.0 " << std::endl; std::cout << "https://github.com/andrewssobral/bgslibrary " << std::endl; std::cout << "by: " << std::endl; std::cout << "Andrews Sobral (andrewssobral@gmail.com) " << std::endl; @@ -13,7 +13,7 @@ int main(int argc, char *argv[]) QApplication a(argc, argv); QCoreApplication::setApplicationName("BGSLibrary"); - QCoreApplication::setApplicationVersion("3.0.0"); + QCoreApplication::setApplicationVersion("3.1.0"); MainWindow w; w.show(); diff --git a/setup.py b/setup.py index fa67b96db3..083340538b 100644 --- a/setup.py +++ b/setup.py @@ -208,7 +208,7 @@ def build_cmake(self, extension): setup( name='pybgs', - version='3.0.0.post2', + version='3.1.0.post0', author='Andrews Sobral', author_email='andrewssobral@gmail.com', url='https://github.com/andrewssobral/bgslibrary',