Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamer-coding committed Jun 16, 2024
1 parent ee3e10a commit 7d0a183
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion man/meson-ui.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mesonui/projectinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions run_project_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_all_pypi_info(self):
assert pypi.get_mail() == "[email protected]"
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):
Expand All @@ -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


Expand Down

0 comments on commit 7d0a183

Please sign in to comment.