Skip to content

Commit

Permalink
packaged as 2.1.0 for the final release will above listed updated
Browse files Browse the repository at this point in the history
  • Loading branch information
bexxmodd committed Jan 9, 2022
1 parent 5647aeb commit 6ed7287
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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='vizex',
version='2.0.6',
version='2.1.0',
author='Beka Modebadze',
author_email='[email protected]',
description='UNIX/Linux Terminal program to graphically display the disk space usage and/or directory data',
Expand Down
18 changes: 9 additions & 9 deletions vizex/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
import click
import sys

from vizexdu.disks import DiskUsage
from vizexdu.battery import Battery
from vizexdu.charts import Options
from vizexdu.cpu import CPUFreq
from vizexdf.files import DirectoryFiles
from vizextree.viztree import construct_tree
from disks import DiskUsage
from battery import Battery
from charts import Options
from cpu import CPUFreq
from files import DirectoryFiles
from viztree import construct_tree
from tools import append_to_bash


# ----- vizextree options and arguments -----
@click.version_option('2.0.6', message='%(prog)s version %(version)s')
@click.version_option('2.1.0', message='%(prog)s version %(version)s')
@click.command(options_metavar='[options]')
@click.argument(
'path',
Expand Down Expand Up @@ -52,7 +52,7 @@ def print_tree(path: str, level: int) -> None:


# ----- vizexdf options and arguments -----
@click.version_option('2.0.6', message='%(prog)s version %(version)s')
@click.version_option('2.1.0', message='%(prog)s version %(version)s')
@click.command(options_metavar='[options]')
@click.argument(
'path',
Expand Down Expand Up @@ -128,7 +128,7 @@ def dirs_files(sort: str, all: str, desc: str, path: str, alias: str) -> None:


# ----- vizex options and arguments -----
@click.version_option('2.0.6', message='%(prog)s version %(version)s')
@click.version_option('2.1.0', message='%(prog)s version %(version)s')
@click.command(options_metavar='[options]')
@click.argument('arg',
default='disk',
Expand Down

0 comments on commit 6ed7287

Please sign in to comment.