Skip to content

Commit

Permalink
Upgraded version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewssobral committed Jul 24, 2022
1 parent 5ce3065 commit a1db2ab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=3.0.0-SNAPSHOT
version=3.1.0-SNAPSHOT
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)

project(bgslibrary VERSION 3.0.0)
project(bgslibrary VERSION 3.1.0)

include(CheckCXXCompilerFlag)

Expand Down
4 changes: 2 additions & 2 deletions gui/qt/bgslibrary_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ([email protected]) " << std::endl;
Expand All @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
url='https://github.com/andrewssobral/bgslibrary',
Expand Down

0 comments on commit a1db2ab

Please sign in to comment.