diff --git a/man/meson-ui.1 b/man/meson-ui.1 index 174e7bc..69c97d8 100755 --- a/man/meson-ui.1 +++ b/man/meson-ui.1 @@ -1,4 +1,4 @@ -.TH MESON-UI "16" "April 2020" "meson-ui 0.20.1" "User Commands" +.TH MESON-UI "16" "April 2020" "meson-ui 0.20.2" "User Commands" .SH NAME meson-ui is a build GUI for Meson build system a next-generation build system. .SH DESCRIPTION diff --git a/mesonui/projectinfo.py b/mesonui/projectinfo.py index e0c2c2e..6d9daa1 100755 --- a/mesonui/projectinfo.py +++ b/mesonui/projectinfo.py @@ -23,7 +23,7 @@ def get_description(self) -> str: return info def get_version(self) -> str: - return '0.20.1' + return '0.20.2' def get_license(self) -> str: return 'Apache-2.0' diff --git a/run_project_tests.py b/run_project_tests.py index 8c46cc1..6c6c4c0 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -49,7 +49,7 @@ def test_all_pypi_info(self): assert pypi.get_mail() == "michaelbrockus@gmail.com" assert pypi.get_license() == "Apache-2.0" assert pypi.get_project_name() == "meson-ui" - assert pypi.get_version() == "0.20.1" + assert pypi.get_version() == "0.20.2" assert pypi.get_description() == info def test_only_author_info(self): @@ -61,7 +61,7 @@ def test_only_project_info(self): pypi = ProjectInfo() assert pypi.get_license() == "Apache-2.0" assert pypi.get_project_name() == "meson-ui" - assert pypi.get_version() == "0.20.1" + assert pypi.get_version() == "0.20.2" assert pypi.get_description() == info