Skip to content

Commit

Permalink
fun art
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Otoupal committed Apr 24, 2024
1 parent 3c4f383 commit d2c8f43
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion abst/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,22 @@
"CLI Command making OCI Bastion and kubernetes usage simple and fast"
)

__version__ = "2.3.55"
__version__ = "2.3.56"
__author__ = "Jiri Otoupal"
__author_email__ = "jiri-otoupal@ips-database.eu"
__license__ = "MIT"
__url__ = "https://github.com/jiri-otoupal/abst"
__pypi_repo__ = "https://pypi.org/project/abst/"

__ascii_art__ = r""" .--.
|o_o |
|:_/ |
// \ \
(| | )
/'\_ _/`\
\___)=(___/
"""

__version_name__ = "SSHed Penguin"
__change_log__ = """
* 'abst ssh' will show screen with available instances for ssh from all abst processes\n
Expand Down
4 changes: 2 additions & 2 deletions abst/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from InquirerPy import inquirer
from requests import ConnectTimeout

from abst.__version__ import __version_name__, __version__, __change_log__, __author__
from abst.__version__ import __version_name__, __version__, __change_log__, __author__, __ascii_art__
from abst.bastion_support.bastion_scheduler import BastionScheduler
from abst.bastion_support.oci_bastion import Bastion
from abst.cli_commands.context.commands import context, ctx
Expand All @@ -24,7 +24,7 @@


@click.group()
@click.version_option(f"{__version__} {__version_name__} @ {__author__}")
@click.version_option(f"\n{__ascii_art__}\n{__version__} {__version_name__} @ {__author__}")
def cli():
pass

Expand Down

0 comments on commit d2c8f43

Please sign in to comment.