Skip to content

Commit

Permalink
3.5.11 push
Browse files Browse the repository at this point in the history
  • Loading branch information
dkundih committed Dec 1, 2021
1 parent 4883e77 commit 05de716
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,13 @@ CHANGELOG
- cli code redefined and made user friendly.
- dualityCLI is not CLI.

3.5.9 (01/12/2021)
3.5.9 (01/12/2021) - UNSTABLE
- now contains the executable CLI file with .exe extension within CLIexe folder.
- dualityCLI.exe v1.0 functionality equalized with 3.5.9 version of python __main__.py and duality.CLI()

3.5.10 (01/12/2021)
- dualityCLI.exe release postponed, use python __main__.py or duality.CLI() to execute.
3.5.10 (01/12/2021) - UNSTABLE
- dualityCLI.exe release postponed, use python __main__.py or duality.CLI() to execute.

3.5.11 (01/12/2021)
- dualityCLI.exe files removed from the package.
- CLIexeversion is now CLIversion.
4 changes: 0 additions & 4 deletions duality/CLIexe/__init__.py

This file was deleted.

2 changes: 1 addition & 1 deletion duality/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
)

#dualityCLI.exe version.
from duality.cli.cli import __CLIexeversion__
from duality.cli.cli import __CLIversion__

#object and module imports.
from duality.hub import toolkit
Expand Down
4 changes: 2 additions & 2 deletions duality/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import all relevant contents from the associated module.
from duality.cli import cli
from duality.cli.cli import (
__CLIexeversion__,
__CLIversion__,
menu,
greet,
save_to,
Expand All @@ -14,7 +14,7 @@
#all relevant contents.
__all__ = [
cli,
__CLIexeversion__,
__CLIversion__,
menu,
greet,
save_to,
Expand Down
6 changes: 3 additions & 3 deletions duality/cli/cli.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#dualityCLI.exe version.
__CLIexeversion__ = 'v1.0'
#dualityCLI version.
__CLIversion__ = 'v1.0'

#intro to the client.
def greet():
print('\n - duality Command Line Interface © David Kundih -', __CLIexeversion__)
print('\n - duality Command Line Interface © David Kundih -', __CLIversion__)

#menu.
def menu():
Expand Down
2 changes: 1 addition & 1 deletion duality/misc/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

]
__license__ = 'Copyright © 2021- David Kundih. All rights reserved. Licensed under the Apache License, Version 2.0 | For more details about the license and terms of use visit the official duality documentation linked at https://github.com/dkundih/duality and https://pypi.org/project/duality'
__version__ = '3.5.10'
__version__ = '3.5.11'
__documentation__ = 'https://github.com/dkundih/duality | https://pypi.org/project/duality'
__contact__ = '[email protected] | [email protected]'
__donate__ = 'https://patreon.com/dkundih | https://buymeacoffee.com/dkundih'

0 comments on commit 05de716

Please sign in to comment.