Skip to content

Commit

Permalink
🔖 release: bump to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeris1One committed Mar 26, 2024
1 parent 58edfd7 commit 3d81baa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
de la licence CeCILL diffusée sur le site "http://www.cecill.info".
"""

version = (1, 4)
version_string = "1.4"
version = (1, 5)
version_string = "1.5"

from .logger import *
14 changes: 8 additions & 6 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,20 @@

def print_ascii_art():
"""
Print GIPSY 2.0 ascii art
Print GIPSY 1.5 ascii art
"""
# Disable some pylints warning violations in this function
# pylint: disable=anomalous-backslash-in-string
# pylint: disable=trailing-whitespace
print(
f"""{color.fg.blue}
___ ____ ____ ___ _ _ __ __
/ __)(_ _)( _ \/ __)( \/ ) / ) /. |
( (_-. _)(_ )___/\__ \ \ / )( (_ _)
\___/(____)(__) (___/ (__) (__)() (_)
_____ _____ _____ _______ __ __ _____
/ ____|_ _| __ \ / ____\ \ / / /_ | | ____|
| | __ | | | |__) | (___ \ \_/ / | | | |__
| | |_ | | | | ___/ \___ \ \ / | | |___ \
| |__| |_| |_| | ____) | | | | |_ ___) |
\_____|_____|_| |_____/ |_| |_(_)____/
{color.stop}"""
)

Expand Down

0 comments on commit 3d81baa

Please sign in to comment.