diff --git a/README.md b/README.md index bd96e33..ff9beeb 100644 --- a/README.md +++ b/README.md @@ -1934,7 +1934,7 @@ options: the program will continue to run. This is useful for having version number in the log files. -You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute +You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute by submitting a Pull Request. Also have a look at matrix-commander-tui. ``` diff --git a/VERSION b/VERSION index e81e85b..f3b8d5c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.6.2 +7.6.3 diff --git a/dist/matrix_commander-7.6.2-py3-none-any.whl b/dist/matrix_commander-7.6.2-py3-none-any.whl deleted file mode 100644 index 15c8c27..0000000 Binary files a/dist/matrix_commander-7.6.2-py3-none-any.whl and /dev/null differ diff --git a/dist/matrix_commander-7.6.2.tar.gz b/dist/matrix_commander-7.6.2.tar.gz deleted file mode 100644 index d3210dc..0000000 Binary files a/dist/matrix_commander-7.6.2.tar.gz and /dev/null differ diff --git a/dist/matrix_commander-7.6.3-py3-none-any.whl b/dist/matrix_commander-7.6.3-py3-none-any.whl new file mode 100644 index 0000000..fa31acf Binary files /dev/null and b/dist/matrix_commander-7.6.3-py3-none-any.whl differ diff --git a/dist/matrix_commander-7.6.3.tar.gz b/dist/matrix_commander-7.6.3.tar.gz new file mode 100644 index 0000000..84a6e2b Binary files /dev/null and b/dist/matrix_commander-7.6.3.tar.gz differ diff --git a/help.help.txt b/help.help.txt index 0023821..9aad6e1 100644 --- a/help.help.txt +++ b/help.help.txt @@ -206,5 +206,5 @@ delete-content ROOM_ID EVENT_ID REASON [ROOM_ID EVENT_ID REASON ...] -v [PRINT|CHECK], -V [PRINT|CHECK], --version [PRINT|CHECK] Print version information or check for updates. -You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute +You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute by submitting a Pull Request. Also have a look at matrix-commander-tui. diff --git a/help.manual.txt b/help.manual.txt index bd2f4d8..52882d2 100644 --- a/help.manual.txt +++ b/help.manual.txt @@ -1174,5 +1174,5 @@ options: the program will continue to run. This is useful for having version number in the log files. -You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute +You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute by submitting a Pull Request. Also have a look at matrix-commander-tui. diff --git a/help.usage.txt b/help.usage.txt index 137a2fb..e2a8327 100644 --- a/help.usage.txt +++ b/help.usage.txt @@ -66,5 +66,5 @@ usage: matrix-commander [--usage] [-h] [--manual] [--readme] [-d] [--room-invites [LIST|JOIN|LIST+JOIN]] [-v [PRINT|CHECK]] -You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute +You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute by submitting a Pull Request. Also have a look at matrix-commander-tui. diff --git a/matrix_commander/matrix_commander.py b/matrix_commander/matrix_commander.py index 3fbb62b..d6aa5dd 100755 --- a/matrix_commander/matrix_commander.py +++ b/matrix_commander/matrix_commander.py @@ -94,8 +94,8 @@ HAVE_OPENID = False # version number -VERSION = "2024-05-02" -VERSIONNR = "7.6.2" +VERSION = "2024-08-23" +VERSIONNR = "7.6.3" # matrix-commander; for backwards compitability replace _ with - PROG_WITHOUT_EXT = os.path.splitext(os.path.basename(__file__))[0].replace( "_", "-" diff --git a/setup.cfg b/setup.cfg index e1fce31..c9d198d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ # https://packaging.python.org/en/latest/tutorials/packaging-projects/ # https://setuptools.pypa.io/en/latest/userguide/ name = matrix-commander -version = 7.6.2 +version = 7.6.3 author = 8go description = A simple command-line Matrix client long_description = file: PyPi-Instructions.md, README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5990f5d --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from setuptools import setup + +if __name__ == "__main__": + setup()