Skip to content

Commit

Permalink
Set version 0.2 for releasing
Browse files Browse the repository at this point in the history
Set version 0.2 and prepare for release.

Signed-off-by: Stefano Babic <[email protected]>
  • Loading branch information
sbabic committed Jan 25, 2023
1 parent 8e1e32c commit d8fc733
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="swugenerator",
version="0.1",
version="0.2",
packages=find_packages(),
url="https://github.com/sbabic/swugenerator",
license="GPLv3",
Expand Down
2 changes: 1 addition & 1 deletion swugenerator/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
__summary__ = "Generator SWU Packages for SWUpdate"
__uri__ = "https://github.com/sbabic/swugenerator"

__version__ = "0.1"
__version__ = "0.2"

__author__ = "Stefano Babic"
__email__ = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion swugenerator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def main() -> None:
# ArgumentParser {{{
parser = argparse.ArgumentParser(
prog=__about__.__title__,
description=__about__.__summary__,
description=__about__.__summary__ + " " + __about__.__version__,
fromfile_prefix_chars="@",
formatter_class=argparse.RawTextHelpFormatter,
)
Expand Down

0 comments on commit d8fc733

Please sign in to comment.